30 lines
268 B
Ruby
30 lines
268 B
Ruby
class CastingCallInterviewPolicy < ApplicationPolicy
|
|
def index?
|
|
true
|
|
end
|
|
|
|
def show?
|
|
true
|
|
end
|
|
|
|
def create?
|
|
true
|
|
end
|
|
|
|
def destroy?
|
|
true
|
|
end
|
|
|
|
def update?
|
|
true
|
|
end
|
|
|
|
def complete?
|
|
true
|
|
end
|
|
|
|
def download?
|
|
true
|
|
end
|
|
end
|