From b1792c37420498d87d76763e084b56cdcad69821 Mon Sep 17 00:00:00 2001 From: Martin Edenhofer Date: Sat, 27 Dec 2014 22:01:09 +0100 Subject: [PATCH] Added jobs controller. --- app/controllers/jobs_controller.rb | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 app/controllers/jobs_controller.rb diff --git a/app/controllers/jobs_controller.rb b/app/controllers/jobs_controller.rb new file mode 100644 index 000000000..b49c0d307 --- /dev/null +++ b/app/controllers/jobs_controller.rb @@ -0,0 +1,30 @@ +# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/ + +class JobsController < ApplicationController + before_filter :authentication_check + + def index + return if deny_if_not_role('Admin') + model_index_render(Job, params) + end + + def show + return if deny_if_not_role('Admin') + model_show_render(Job, params) + end + + def create + return if deny_if_not_role('Admin') + model_create_render(Job, params) + end + + def update + return if deny_if_not_role('Admin') + model_update_render(Job, params) + end + + def destroy + return if deny_if_not_role('Admin') + model_destory_render(Job, params) + end +end \ No newline at end of file