1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/controllers/settings/preferences_controller.rb

25 lines
552 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::PreferencesController < Settings::BaseController
2016-12-06 09:03:30 -08:00
def show; end
2016-10-13 17:28:49 -07:00
def update
if current_user.update(user_params)
I18n.locale = current_user.locale
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
def after_update_redirect_path
settings_preferences_path
end
2016-10-13 17:28:49 -07:00
def user_params
params.require(:user).permit(:locale, chosen_languages: [], settings_attributes: UserSettings.keys)
2016-10-13 17:28:49 -07:00
end
end