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