trabajo-afectivo/config/routes/sla.rb

11 lines
485 B
Ruby
Raw Normal View History

2013-08-21 19:16:42 +00:00
Zammad::Application.routes.draw do
api_path = Rails.configuration.api_path
2013-02-01 08:53:14 +00:00
2013-08-21 19:16:42 +00:00
# slas
match api_path + '/slas', :to => 'slas#index', :via => :get
match api_path + '/slas/:id', :to => 'slas#show', :via => :get
match api_path + '/slas', :to => 'slas#create', :via => :post
match api_path + '/slas/:id', :to => 'slas#update', :via => :put
match api_path + '/slas/:id', :to => 'slas#destroy', :via => :delete
2013-02-01 08:53:14 +00:00
end