Let moderators manage blocklist

staging
Daggertooth 2018-04-15 01:49:24 -05:00 committed by multiple creatures
parent 49353be9f1
commit 28724df663
1 changed files with 4 additions and 4 deletions

View File

@ -2,18 +2,18 @@
class DomainBlockPolicy < ApplicationPolicy
def index?
admin?
staff?
end
def show?
admin?
staff?
end
def create?
admin?
staff?
end
def destroy?
admin?
staff?
end
end