2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-13 20:28:49 -04:00
|
|
|
class Settings::PreferencesController < ApplicationController
|
2017-01-27 21:56:10 -05:00
|
|
|
layout 'admin'
|
2016-10-13 20:28:49 -04:00
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-12-06 12:03:30 -05:00
|
|
|
def show; end
|
2016-10-13 20:28:49 -04:00
|
|
|
|
|
|
|
def update
|
2017-01-12 14:46:24 -05: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 17:45:48 -05:00
|
|
|
digest: user_params[:notification_emails][:digest] == '1',
|
2017-01-12 14:46:24 -05: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 07:13:16 -05:00
|
|
|
|
2017-02-06 18:23:38 -05:00
|
|
|
current_user.settings['default_privacy'] = user_params[:setting_default_privacy]
|
2017-02-06 17:16:20 -05:00
|
|
|
|
2017-02-06 18:23:38 -05:00
|
|
|
if current_user.update(user_params.except(:notification_emails, :interactions, :setting_default_privacy))
|
2016-11-15 17:02:57 -05:00
|
|
|
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-10-13 20:28:49 -04:00
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_params
|
2017-03-03 17:45:48 -05:00
|
|
|
params.require(:user).permit(:locale, :setting_default_privacy, notification_emails: [:follow, :follow_request, :reblog, :favourite, :mention, :digest], interactions: [:must_be_follower, :must_be_following])
|
2016-10-13 20:28:49 -04:00
|
|
|
end
|
|
|
|
end
|