core_workflow.rb 718 B

12345678910111213
  1. # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. Zammad::Application.routes.draw do
  3. api_path = Rails.configuration.api_path
  4. # core_workflows
  5. match api_path + '/core_workflows', to: 'core_workflows#index', via: :get
  6. match api_path + '/core_workflows/:id', to: 'core_workflows#show', via: :get
  7. match api_path + '/core_workflows', to: 'core_workflows#create', via: :post
  8. match api_path + '/core_workflows/:id', to: 'core_workflows#update', via: :put
  9. match api_path + '/core_workflows/:id', to: 'core_workflows#destroy', via: :delete
  10. match api_path + '/core_workflows/perform', to: 'core_workflows#perform', via: :post
  11. end