You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
458 B
23 lines
458 B
3 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class Api::V1::Admin::MeasuresController < Api::BaseController
|
||
|
protect_from_forgery with: :exception
|
||
|
|
||
|
before_action :require_staff!
|
||
|
before_action :set_measures
|
||
|
|
||
|
def create
|
||
|
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]
|
||
|
)
|
||
|
end
|
||
|
end
|