2017-11-11 19:23:33 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ReportPolicy < ApplicationPolicy
|
|
|
|
def update?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_reports)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def index?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_reports)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def show?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_reports)
|
2017-11-11 19:23:33 +00:00
|
|
|
end
|
|
|
|
end
|