Files
old-holivud2/app/policies/acquired_media_release_policy.rb
2020-06-26 18:45:11 +02:00

34 lines
377 B
Ruby

class AcquiredMediaReleasePolicy < ApplicationPolicy
def create?
true
end
def show?
true
end
def update?
!record.native?
end
def destroy?
user.manager? || user.account_manager?
end
def tag_multiple?
true
end
def edit_file_infos?
true
end
def update_file_infos?
true
end
def download_multiple?
true
end
end