trabajo-afectivo/config/routes/role.rb

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