checklist.rb 374 B

123456789
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. Zammad::Application.routes.draw do
  3. scope Rails.configuration.api_path do
  4. resources :checklists, only: %i[show create update destroy]
  5. resources :checklist_items, only: %i[create update destroy show]
  6. resources :checklist_templates, only: %i[index show create update destroy]
  7. end
  8. end