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
|
|
|
# links
|
|
|
|
match api_path + '/links', :to => 'links#index', :via => :get
|
|
|
|
match api_path + '/links/add', :to => 'links#add', :via => :get
|
|
|
|
match api_path + '/links/remove', :to => 'links#remove', :via => :get
|
2012-09-20 12:08:02 +00:00
|
|
|
|
2013-08-21 19:16:42 +00:00
|
|
|
end
|