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