1
0
Fork 0
dokkan-data-rails/app/policies/super_attack_policy.rb

18 lines
245 B
Ruby
Raw Normal View History

2015-10-08 15:18:21 -04:00
class SuperAttackPolicy < ApplicationPolicy
def index?
true
end
def create?
user.moderator? || user.admin?
end
def update?
user.moderator? || user.admin?
end
def destroy?
user.moderator? || user.admin?
end
end