Added jobs controller.
This commit is contained in:
parent
0d15371e53
commit
b1792c3742
1 changed files with 30 additions and 0 deletions
30
app/controllers/jobs_controller.rb
Normal file
30
app/controllers/jobs_controller.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue