2022-10-11 17:23:45 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Check the access policies for API::StatisticsController
|
2016-03-23 18:39:41 +01:00
|
|
|
class StatisticPolicy < ApplicationPolicy
|
2022-10-11 17:23:45 +02:00
|
|
|
%w[index account event machine project subscription training user space order scroll export_subscription export_machine
|
|
|
|
export_training export_event export_account export_project export_space export_order export_global].each do |action|
|
2016-03-23 18:39:41 +01:00
|
|
|
define_method "#{action}?" do
|
2019-01-14 12:57:31 +01:00
|
|
|
user.admin?
|
2016-03-23 18:39:41 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|