2012-09-20 12:08:02 +00:00
|
|
|
module ExtraRoutes
|
2013-08-06 22:10:28 +00:00
|
|
|
def add(map, api_path)
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
# links
|
2013-08-06 22:10:28 +00:00
|
|
|
map.match api_path + '/links', :to => 'links#index', :via => :get
|
|
|
|
map.match api_path + '/links/add', :to => 'links#add', :via => :get
|
|
|
|
map.match api_path + '/links/remove', :to => 'links#remove', :via => :get
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
module_function :add
|
2013-05-29 15:12:03 +00:00
|
|
|
end
|