This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-10-14 20:44:59 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Admin::MeasuresController < Api::BaseController
|
2022-07-05 02:41:40 +02:00
|
|
|
include Authorization
|
|
|
|
|
2022-01-17 09:41:33 +01:00
|
|
|
before_action -> { authorize_if_got_token! :'admin:read' }
|
2021-10-14 20:44:59 +02:00
|
|
|
before_action :set_measures
|
|
|
|
|
2022-07-05 02:41:40 +02:00
|
|
|
after_action :verify_authorized
|
|
|
|
|
2021-10-14 20:44:59 +02:00
|
|
|
def create
|
2022-07-05 02:41:40 +02:00
|
|
|
authorize :dashboard, :index?
|
2021-10-14 20:44:59 +02:00
|
|
|
render json: @measures, each_serializer: REST::Admin::MeasureSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_measures
|
|
|
|
@measures = Admin::Metrics::Measure.retrieve(
|
|
|
|
params[:keys],
|
|
|
|
params[:start_at],
|
2021-11-25 13:07:38 +01:00
|
|
|
params[:end_at],
|
|
|
|
params
|
2021-10-14 20:44:59 +02:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|