setting.rb 533 B

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