summaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
Diffstat (limited to 'users')
-rw-r--r--users/config/routes.rb14
1 files changed, 6 insertions, 8 deletions
diff --git a/users/config/routes.rb b/users/config/routes.rb
index c50cb15..9a9a40e 100644
--- a/users/config/routes.rb
+++ b/users/config/routes.rb
@@ -1,13 +1,11 @@
Rails.application.routes.draw do
- constraints :subdomain => "api" do
- namespace "api", { module: "v1",
- path: "/1/",
- defaults: {format: 'json'} } do
- resources :sessions, :only => [:new, :create, :update]
- delete "logout" => "sessions#destroy", :as => "logout"
- resources :users, :only => [:create, :update]
- end
+ namespace "api", { module: "v1",
+ path: "/1/",
+ defaults: {format: 'json'} } do
+ resources :sessions, :only => [:new, :create, :update]
+ delete "logout" => "sessions#destroy", :as => "logout"
+ resources :users, :only => [:create, :update]
end
get "login" => "sessions#new", :as => "login"