a6a62d92bf
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
21 lines
190 B
Ruby
21 lines
190 B
Ruby
class ContactPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def search?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
true
|
|
end
|
|
end
|