diff options
Diffstat (limited to 'users/config/routes.rb')
-rw-r--r-- | users/config/routes.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/users/config/routes.rb b/users/config/routes.rb index 723d737..0c2d8d9 100644 --- a/users/config/routes.rb +++ b/users/config/routes.rb @@ -1,11 +1,11 @@ Rails.application.routes.draw do constraints :subdomain => "api" do - namespace "api", :path => nil do - scope "/1", :module => "V1", defaults: {format: 'json'} do - resources :sessions, :only => [:new, :create, :update, :destroy] - resources :users, :only => [:create] - end + namespace "api", { module: "V1", + path: "/1/", + defaults: {format: 'json'} } do + resources :sessions, :only => [:new, :create, :update, :destroy] + resources :users, :only => [:create] end end |