trabajo-afectivo/config/routes/taskbar.rb

10 lines
486 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
match api_path + '/taskbar', :to => 'taskbar#index', :via => :get
match api_path + '/taskbar/:id', :to => 'taskbar#show', :via => :get
match api_path + '/taskbar', :to => 'taskbar#create', :via => :post
match api_path + '/taskbar/:id', :to => 'taskbar#update', :via => :put
match api_path + '/taskbar/:id', :to => 'taskbar#destroy',:via => :delete
end