trabajo-afectivo/config/routes/link.rb

9 lines
326 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
# 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
2013-08-21 19:16:42 +00:00
end