2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-14 00:28:49 +00:00
|
|
|
class Settings::PreferencesController < ApplicationController
|
2017-01-28 02:56:10 +00:00
|
|
|
layout 'admin'
|
2016-10-14 00:28:49 +00:00
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-12-06 17:03:30 +00:00
|
|
|
def show; end
|
2016-10-14 00:28:49 +00:00
|
|
|
|
|
|
|
def update
|
2017-01-12 19:46:24 +00:00
|
|
|
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 22:45:48 +00:00
|
|
|
digest: user_params[:notification_emails][:digest] == '1',
|
2017-01-12 19:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
current_user.settings['interactions'] = {
|
|
|
|
must_be_follower: user_params[:interactions][:must_be_follower] == '1',
|
|
|
|
must_be_following: user_params[:interactions][:must_be_following] == '1',
|
|
|
|
}
|
2016-11-25 12:13:16 +00:00
|
|
|
|
2017-02-06 23:23:38 +00:00
|
|
|
current_user.settings['default_privacy'] = user_params[:setting_default_privacy]
|
2017-04-17 23:57:50 +00: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'
|
2017-02-06 22:16:20 +00:00
|
|
|
|
2017-04-17 10:14:03 +00:00
|
|
|
if current_user.update(user_params.except(:notification_emails, :interactions, :setting_default_privacy, :setting_boost_modal, :setting_auto_play_gif))
|
2016-11-15 22:02:57 +00:00
|
|
|
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-10-14 00:28:49 +00:00
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_params
|
2017-04-17 10:14:03 +00:00
|
|
|
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 00:28:49 +00:00
|
|
|
end
|
|
|
|
end
|