19 lines
208 B
Ruby
19 lines
208 B
Ruby
|
class ContactPolicy < ApplicationPolicy
|
||
|
|
||
|
def index?
|
||
|
@user.administrator?
|
||
|
end
|
||
|
|
||
|
def update?
|
||
|
@user.administrator?
|
||
|
end
|
||
|
|
||
|
def show?
|
||
|
@user.administrator?
|
||
|
end
|
||
|
|
||
|
def create?
|
||
|
true
|
||
|
end
|
||
|
end
|