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

38 lines
397 B
Ruby

class MaterialReleasePolicy < ReleasePolicy
def create?
true
end
def show?
true
end
def update?
!record.native?
end
def index?
true
end
def destroy?
user.manager? || user.account_manager?
end
def edit_photos?
true
end
def update_photos?
edit_photos?
end
def tag_multiple?
true
end
def download_multiple?
true
end
end