trabajo-afectivo/app/policies/controllers/taskbar_controller_policy.rb

28 lines
559 B
Ruby
Raw Permalink Normal View History

2022-01-01 13:38:12 +00:00
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Controllers::TaskbarControllerPolicy < Controllers::ApplicationControllerPolicy
def show?
own?
end
def update?
own?
end
def destroy?
own?
end
private
def own?
taskbar = Taskbar.find(record.params[:id])
return true if taskbar.user_id == user.id
# current implementation requires this exception type
# should be replaced by unified way
raise Exceptions::UnprocessableEntity, __('Not allowed to access this task.')
end
end