2021-10-14 20:44:59 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Admin::RetentionController < Api::BaseController
|
|
|
|
protect_from_forgery with: :exception
|
|
|
|
|
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 :require_staff!
|
|
|
|
before_action :set_cohorts
|
|
|
|
|
|
|
|
def create
|
|
|
|
render json: @cohorts, each_serializer: REST::Admin::CohortSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_cohorts
|
|
|
|
@cohorts = Admin::Metrics::Retention.new(
|
|
|
|
params[:start_at],
|
|
|
|
params[:end_at],
|
|
|
|
params[:frequency]
|
|
|
|
).cohorts
|
|
|
|
end
|
|
|
|
end
|