2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
18 lines
208 B
Ruby
18 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
|