diff options
author | jessib <jessib@leap.se> | 2013-01-29 11:42:46 -0800 |
---|---|---|
committer | jessib <jessib@leap.se> | 2013-01-29 11:42:46 -0800 |
commit | 90b64fdffdc33f0204af6ac2e315bd4be6bc200a (patch) | |
tree | 79ef50efd43b9bdd19bbeb4872ac6beb1ba95557 /users/config/routes.rb | |
parent | dac578781baf73a006cc78e29588dd1f6fdc0fd3 (diff) |
Allow PUT API to update user.
Diffstat (limited to 'users/config/routes.rb')
-rw-r--r-- | users/config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/config/routes.rb b/users/config/routes.rb index 4127862..2cd1740 100644 --- a/users/config/routes.rb +++ b/users/config/routes.rb @@ -5,7 +5,7 @@ Rails.application.routes.draw do path: "/1/", defaults: {format: 'json'} } do resources :sessions, :only => [:new, :create, :update, :destroy] - resources :users, :only => [:create] + resources :users, :only => [:create, :update] end end |