I have those API's routes:
Fuu::Application.routes.draw do
scope(:module => 'api', :defaults => {:format => 'json'}) do
namespace('v1') do
get 'welcome' => 'welcomes#index'
end
end
end
As you can see, there's a v1 module. But I would like to just have 1 as the version numero, in order to get some URL looking like:
https://api.fuu.com/:version/direct_messages/sent.format
...where version is just 1.
I tried to use namespace('1'), but it's not possible because a module can not be an integer.
How could we do this?