chinwagsocial/app/controllers/settings/preferences_controller.rb

40 lines
1.5 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-14 11:28:49 +11:00
class Settings::PreferencesController < ApplicationController
layout 'admin'
2016-10-14 11:28:49 +11:00
before_action :authenticate_user!
2016-12-07 04:03:30 +11:00
def show; end
2016-10-14 11:28:49 +11: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-04 09:45:48 +11: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 10:23:38 +11:00
current_user.settings['default_privacy'] = user_params[:setting_default_privacy]
2017-02-07 10:23:38 +11:00
if current_user.update(user_params.except(:notification_emails, :interactions, :setting_default_privacy))
2016-11-16 09:02:57 +11:00
redirect_to settings_preferences_path, notice: I18n.t('generic.changes_saved_msg')
2016-10-14 11:28:49 +11:00
else
render action: :show
end
end
private
def user_params
2017-03-04 09:45:48 +11: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-14 11:28:49 +11:00
end
end