trabajo-afectivo/app/controllers/taskbar_controller.rb

46 lines
1 KiB
Ruby
Raw Normal View History

2016-10-19 03:11:36 +00:00
# Copyright (C) 2012-2016 Zammad Foundation, http://zammad-foundation.org/
2013-05-29 15:11:11 +00:00
class TaskbarController < ApplicationController
prepend_before_action :authentication_check
2013-05-29 15:11:11 +00:00
def index
current_user_tasks = Taskbar.where(user_id: current_user.id)
2013-05-29 15:11:11 +00:00
model_index_render_result(current_user_tasks)
end
def show
taskbar = Taskbar.find(params[:id])
2017-09-10 16:19:03 +00:00
access_to_taskbar(taskbar)
model_create_render(Taskbar, params)
2013-05-29 15:11:11 +00:00
end
def create
2017-09-10 16:19:03 +00:00
task_user(params)
2015-04-27 14:53:29 +00:00
model_create_render(Taskbar, params)
2013-05-29 15:11:11 +00:00
end
def update
taskbar = Taskbar.find(params[:id])
2017-09-10 16:19:03 +00:00
access_to_taskbar(taskbar)
task_user(params)
model_update_render(Taskbar, params)
2013-05-29 15:11:11 +00:00
end
def destroy
taskbar = Taskbar.find(params[:id])
2017-09-10 16:19:03 +00:00
access_to_taskbar(taskbar)
model_destroy_render(Taskbar, params)
2013-05-29 15:11:11 +00:00
end
2013-05-31 23:09:09 +00:00
private
2015-04-27 20:49:17 +00:00
2017-09-10 16:19:03 +00:00
def access_to_taskbar(taskbar)
raise Exceptions::UnprocessableEntity, 'Not allowed to access this task.' if taskbar.user_id != current_user.id
end
2017-09-10 16:19:03 +00:00
def task_user(params)
params[:user_id] = current_user.id
end
2013-05-29 15:11:11 +00:00
end