about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-10-06 23:15:50 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-10-06 23:15:50 +0200
commit943c69c65d6410d1689d4494c9214c90654db56b (patch)
tree8da4e94944db69dbd407931f94b61b2f3c880511 /app/controllers
parenta4b8069cf5ed57d7cba066993f683941a6e60bc3 (diff)
Fix #73 - Click on in-UI profile avatar/name to open public profile
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/settings_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/settings_controller.rb b/app/controllers/settings_controller.rb
index e4a246ec9..299e1f3bc 100644
--- a/app/controllers/settings_controller.rb
+++ b/app/controllers/settings_controller.rb
@@ -9,7 +9,7 @@ class SettingsController < ApplicationController
 
   def update
     if @account.update(account_params)
-      redirect_to settings_path
+      redirect_to settings_path, notice: 'Changes successfully saved!'
     else
       render action: :show
     end