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