checklist_template_items_controller.rb 578 B

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