2012-11-26 23:32:55 +00:00
|
|
|
module ExtraRoutes
|
2013-08-06 22:10:28 +00:00
|
|
|
def add(map, api_path)
|
2012-11-26 23:32:55 +00:00
|
|
|
|
|
|
|
# messages
|
2013-08-06 22:10:28 +00:00
|
|
|
map.match api_path + '/message_send', :to => 'long_polling#message_send', :via => [ :get, :post ]
|
|
|
|
map.match api_path + '/message_receive', :to => 'long_polling#message_receive', :via => [ :get, :post ]
|
2012-11-26 23:32:55 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
module_function :add
|
2013-05-27 07:27:00 +00:00
|
|
|
end
|