Files
old-holivud2/app/policies/misc_release_policy.rb

50 lines
527 B
Ruby
Raw Normal View History

2020-06-24 04:48:12 +02:00
class MiscReleasePolicy < ReleasePolicy
def create?
true
end
def show?
true
end
def update?
!record.native?
end
def destroy?
2020-06-26 18:45:11 +02:00
user.manager? || user.account_manager?
2020-06-24 04:48:12 +02:00
end
def edit_photos?
true
end
def index?
true
end
def update_photos?
edit_photos?
end
def tag_multiple?
true
end
def download_single?
true
end
def download_multiple?
download_single?
end
2020-07-20 13:28:40 +00:00
def review?
user.account_manager?
end
def approve?
review?
end
2020-06-24 04:48:12 +02:00
end