2012-10-22 13:00:26 +00:00
|
|
|
module ExtraRoutes
|
2013-08-06 22:10:28 +00:00
|
|
|
def add(map, api_path)
|
2012-10-22 13:00:26 +00:00
|
|
|
|
2013-08-06 22:10:28 +00:00
|
|
|
# text_modules
|
|
|
|
map.match api_path + '/text_modules', :to => 'text_modules#index', :via => :get
|
|
|
|
map.match api_path + '/text_modules/:id', :to => 'text_modules#show', :via => :get
|
|
|
|
map.match api_path + '/text_modules', :to => 'text_modules#create', :via => :post
|
|
|
|
map.match api_path + '/text_modules/:id', :to => 'text_modules#update', :via => :put
|
|
|
|
map.match api_path + '/text_modules/:id', :to => 'text_modules#destroy', :via => :delete
|
2012-10-22 13:00:26 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
module_function :add
|
|
|
|
end
|