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