25 lines
220 B
Ruby
25 lines
220 B
Ruby
class ContactPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def active?
|
|
true
|
|
end
|
|
|
|
def search?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
true
|
|
end
|
|
end
|