trabajo-afectivo/app/controllers/jobs_controller.rb

27 lines
471 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/
2014-12-27 21:01:09 +00:00
class JobsController < ApplicationController
prepend_before_action { authentication_check && authorize! }
2014-12-27 21:01:09 +00:00
def index
model_index_render(Job, params)
end
def show
model_show_render(Job, params)
end
def create
model_create_render(Job, params)
end
def update
model_update_render(Job, params)
end
def destroy
model_destroy_render(Job, params)
2014-12-27 21:01:09 +00:00
end
end