2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-13 06:32:13 +09:00
|
|
|
class Settings::PreferencesController < Settings::BaseController
|
2016-12-07 02:03:30 +09:00
|
|
|
def show; end
|
2016-10-14 09:28:49 +09:00
|
|
|
|
|
|
|
def update
|
2017-04-21 10:26:52 +09:00
|
|
|
if current_user.update(user_params)
|
2017-05-23 00:58:41 +09:00
|
|
|
I18n.locale = current_user.locale
|
2019-06-07 10:39:24 +09:00
|
|
|
redirect_to after_update_redirect_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-10-14 09:28:49 +09:00
|
|
|
else
|
2017-04-19 22:37:42 +09:00
|
|
|
render :show
|
2016-10-14 09:28:49 +09:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-06-07 10:39:24 +09:00
|
|
|
def after_update_redirect_path
|
|
|
|
settings_preferences_path
|
|
|
|
end
|
|
|
|
|
2016-10-14 09:28:49 +09:00
|
|
|
def user_params
|
2023-03-30 21:44:00 +09:00
|
|
|
params.require(:user).permit(:locale, chosen_languages: [], settings_attributes: UserSettings.keys)
|
2016-10-14 09:28:49 +09:00
|
|
|
end
|
|
|
|
end
|