template.rb 506 B

1234567891011
  1. Zammad::Application.routes.draw do
  2. api_path = Rails.configuration.api_path
  3. # templates
  4. match api_path + '/templates', to: 'templates#index', via: :get
  5. match api_path + '/templates/:id', to: 'templates#show', via: :get
  6. match api_path + '/templates', to: 'templates#create', via: :post
  7. match api_path + '/templates/:id', to: 'templates#update', via: :put
  8. match api_path + '/templates/:id', to: 'templates#destroy', via: :delete
  9. end