mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
44b2ee3485
* Add customizable user roles * Various fixes and improvements * Add migration for old settings and fix tootctl role management
27 lines
554 B
Ruby
27 lines
554 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::Admin::MeasuresController < Api::BaseController
|
|
include Authorization
|
|
|
|
before_action -> { authorize_if_got_token! :'admin:read' }
|
|
before_action :set_measures
|
|
|
|
after_action :verify_authorized
|
|
|
|
def create
|
|
authorize :dashboard, :index?
|
|
render json: @measures, each_serializer: REST::Admin::MeasureSerializer
|
|
end
|
|
|
|
private
|
|
|
|
def set_measures
|
|
@measures = Admin::Metrics::Measure.retrieve(
|
|
params[:keys],
|
|
params[:start_at],
|
|
params[:end_at],
|
|
params
|
|
)
|
|
end
|
|
end
|