26 lines
225 B
Ruby
26 lines
225 B
Ruby
class TaskRequestPolicy < 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
|