This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-10-04 10:22:52 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 22:32:13 +01:00
|
|
|
class Settings::NotificationsController < Settings::BaseController
|
2017-10-04 10:22:52 +02:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
|
|
|
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-02 02:05:32 +02:00
|
|
|
notification_emails: %i(follow follow_request reblog favourite mention digest report),
|
2017-11-14 21:12:57 +01:00
|
|
|
interactions: %i(must_be_follower must_be_following must_be_following_dm)
|
2017-10-04 10:22:52 +02:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|