jobs_controller.rb 461 B

1234567891011121314151617181920212223242526
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class JobsController < ApplicationController
  3. prepend_before_action :authenticate_and_authorize!
  4. def index
  5. model_index_render(Job, params)
  6. end
  7. def show
  8. model_show_render(Job, params)
  9. end
  10. def create
  11. model_create_render(Job, params)
  12. end
  13. def update
  14. model_update_render(Job, params)
  15. end
  16. def destroy
  17. model_destroy_render(Job, params)
  18. end
  19. end