2013-08-21 19:16:42 +00:00
|
|
|
Zammad::Application.routes.draw do
|
|
|
|
api_path = Rails.configuration.api_path
|
2012-09-20 12:08:02 +00:00
|
|
|
|
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
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
end
|