Chatwoot/app/policies/contact_policy.rb
Sojan Jose a6a62d92bf
chore: Add Additional Contact APIs (#1130)
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
2020-08-10 12:15:29 +05:30

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