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
|
2015-04-27 13:42:53 +00:00
|
|
|
match api_path + '/links', to: 'links#index', via: :get
|
2020-08-31 07:51:56 +00:00
|
|
|
match api_path + '/links/add', to: 'links#add', via: :post
|
|
|
|
match api_path + '/links/remove', to: 'links#remove', via: :delete
|
2012-09-20 12:08:02 +00:00
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|