sla.rb 485 B

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