25 lines
224 B
Ruby
25 lines
224 B
Ruby
class CastingCallPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
true
|
|
end
|
|
|
|
def destroy?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def cancel?
|
|
true
|
|
end
|
|
end |