2017-10-04 04:22:52 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::NotificationsController < ApplicationController
|
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2018-10-24 18:10:01 -04:00
|
|
|
before_action :set_body_classes
|
2017-10-04 04:22:52 -04:00
|
|
|
|
|
|
|
def show; end
|
|
|
|
|
|
|
|
def update
|
|
|
|
user_settings.update(user_settings_params.to_h)
|
|
|
|
|
|
|
|
if current_user.save
|
|
|
|
redirect_to settings_notifications_path, notice: I18n.t('generic.changes_saved_msg')
|
|
|
|
else
|
|
|
|
render :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_settings
|
|
|
|
UserSettingsDecorator.new(current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def user_settings_params
|
|
|
|
params.require(:user).permit(
|
2018-09-01 20:05:32 -04:00
|
|
|
notification_emails: %i(follow follow_request reblog favourite mention digest report),
|
2017-11-14 15:12:57 -05:00
|
|
|
interactions: %i(must_be_follower must_be_following must_be_following_dm)
|
2017-10-04 04:22:52 -04:00
|
|
|
)
|
|
|
|
end
|
2018-10-24 18:10:01 -04:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2017-10-04 04:22:52 -04:00
|
|
|
end
|