1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/app/policies/supporting_document_refusal_policy.rb

17 lines
289 B
Ruby

# frozen_string_literal: true
# Check the access policies for API::SupportingDocumentRefusalsController
class SupportingDocumentRefusalPolicy < ApplicationPolicy
def index?
user.privileged?
end
def create?
user.privileged?
end
def show?
user.privileged?
end
end