blob: 8af666b8ffbd82e92f4a4a0b1521a0a7a518f18c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# frozen_string_literal: true
class DomainBlockPolicy < ApplicationPolicy
def index?
staff?
end
def show?
staff?
end
def create?
staff?
end
def destroy?
staff?
end
end
|