diff options
Diffstat (limited to 'users/app/controllers')
-rw-r--r-- | users/app/controllers/users_controller.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/users/app/controllers/users_controller.rb b/users/app/controllers/users_controller.rb index cffc8c6..4921a4a 100644 --- a/users/app/controllers/users_controller.rb +++ b/users/app/controllers/users_controller.rb @@ -30,8 +30,10 @@ class UsersController < ApplicationController end def update - @user.update_attributes(params[:user]) - respond_with @user + if @user.update_attributes(params[:user]) + flash[:notice] = t(:user_updated_successfully) + end + respond_with @user, :location => edit_user_path(@user) end def destroy |