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