mirror of
https://github.com/mastodon/mastodon.git
synced 2026-07-29 17:47:29 -05:00
* Fix GHSA-7jvv-fhmg-wpfw * Fix GHSA-hx34-2pfw-2qfj * Fix GHSA-vwhj-3g83-v276 * Bump version to v4.6.4
27 lines
578 B
Ruby
27 lines
578 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.require(:keys),
|
|
params.require(:start_at),
|
|
params.require(:end_at),
|
|
params
|
|
)
|
|
end
|
|
end
|