mastodon/app/controllers/settings/preferences_controller.rb

42 lines
1.8 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-14 02:28:49 +02:00
class Settings::PreferencesController < ApplicationController
layout 'admin'
2016-10-14 02:28:49 +02:00
before_action :authenticate_user!
2016-12-06 18:03:30 +01:00
def show; end
2016-10-14 02:28:49 +02:00
def update
current_user.settings['notification_emails'] = {
follow: user_params[:notification_emails][:follow] == '1',
follow_request: user_params[:notification_emails][:follow_request] == '1',
reblog: user_params[:notification_emails][:reblog] == '1',
favourite: user_params[:notification_emails][:favourite] == '1',
mention: user_params[:notification_emails][:mention] == '1',
2017-03-03 23:45:48 +01:00
digest: user_params[:notification_emails][:digest] == '1',
}
current_user.settings['interactions'] = {
must_be_follower: user_params[:interactions][:must_be_follower] == '1',
must_be_following: user_params[:interactions][:must_be_following] == '1',
}
2017-02-07 00:23:38 +01:00
current_user.settings['default_privacy'] = user_params[:setting_default_privacy]
2017-04-18 01:57:50 +02:00
current_user.settings['boost_modal'] = user_params[:setting_boost_modal] == '1'
current_user.settings['auto_play_gif'] = user_params[:setting_auto_play_gif] == '1'
if current_user.update(user_params.except(:notification_emails, :interactions, :setting_default_privacy, :setting_boost_modal, :setting_auto_play_gif))
2016-11-15 23:02:57 +01:00
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
2016-10-14 02:28:49 +02:00
else
render action: :show
end
end
private
def user_params
params.require(:user).permit(:locale, :setting_default_privacy, :setting_boost_modal, :setting_auto_play_gif, notification_emails: [:follow, :follow_request, :reblog, :favourite, :mention, :digest], interactions: [:must_be_follower, :must_be_following])
2016-10-14 02:28:49 +02:00
end
end