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 class DomainBlockPolicy < ApplicationPolicy
def index? def index?
admin? staff?
end end
def show? def show?
admin? staff?
end end
def create? def create?
admin? staff?
end end
def destroy? def destroy?
admin? staff?
end end
end end