text_module.rb 777 B

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