Skip to content
Snippets Groups Projects
Commit 714e41d4 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix preferences save

parent ac035108
No related branches found
No related tags found
No related merge requests found
......@@ -21,9 +21,9 @@ class Settings::PreferencesController < ApplicationController
must_be_following: user_params[:interactions][:must_be_following] == '1',
}
current_user.settings['default_privacy'] = user_params[:settings][:default_privacy]
current_user.settings['default_privacy'] = user_params[:setting_default_privacy]
if current_user.update(user_params.except(:notification_emails, :interactions, :settings))
if current_user.update(user_params.except(:notification_emails, :interactions, :setting_default_privacy))
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
else
render action: :show
......@@ -33,6 +33,6 @@ class Settings::PreferencesController < ApplicationController
private
def user_params
params.require(:user).permit(:locale, settings: [:default_privacy], notification_emails: [:follow, :follow_request, :reblog, :favourite, :mention], interactions: [:must_be_follower, :must_be_following])
params.require(:user).permit(:locale, :setting_default_privacy, notification_emails: [:follow, :follow_request, :reblog, :favourite, :mention], interactions: [:must_be_follower, :must_be_following])
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment