2022-02-14 20:27:53 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AppealPolicy < ApplicationPolicy
|
|
|
|
def index?
|
2022-07-05 00:41:40 +00:00
|
|
|
role.can?(:manage_appeals)
|
2022-02-14 20:27:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def approve?
|
2022-07-05 00:41:40 +00:00
|
|
|
record.pending? && role.can?(:manage_appeals)
|
2022-02-14 20:27:53 +00:00
|
|
|
end
|
|
|
|
|
2022-07-05 00:41:40 +00:00
|
|
|
def reject?
|
|
|
|
record.pending? && role.can?(:manage_appeals)
|
|
|
|
end
|
2022-02-14 20:27:53 +00:00
|
|
|
end
|