1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-20 15:31:12 +00:00

use "do end" instead of {} at MyController

git-svn-id: http://svn.redmine.org/redmine/trunk@20077 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-09-24 16:07:20 +00:00
parent f76bd5f9c3
commit f1e86fb99d

View File

@ -58,10 +58,10 @@ class MyController < ApplicationController
@user.pref.save @user.pref.save
set_language_if_valid @user.language set_language_if_valid @user.language
respond_to do |format| respond_to do |format|
format.html { format.html do
flash[:notice] = l(:notice_account_updated) flash[:notice] = l(:notice_account_updated)
redirect_to my_account_path redirect_to my_account_path
} end
format.api {render_api_ok} format.api {render_api_ok}
end end
return return