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
|
|
|
|
|
|
|
# getting_started
|
2013-08-06 22:10:28 +00:00
|
|
|
map.match api_path + '/getting_started', :to => 'getting_started#index', :via => :get
|
2012-09-20 12:08:02 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
module_function :add
|
2013-05-27 07:27:00 +00:00
|
|
|
end
|