trabajo-afectivo/config/routes/overview.rb

11 lines
525 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-08-21 19:16:42 +00:00
# overviews
match api_path + '/overviews', :to => 'overviews#index', :via => :get
match api_path + '/overviews/:id', :to => 'overviews#show', :via => :get
match api_path + '/overviews', :to => 'overviews#create', :via => :post
match api_path + '/overviews/:id', :to => 'overviews#update', :via => :put
match api_path + '/overviews/:id', :to => 'overviews#destroy', :via => :delete
end