2018-09-23 15:44:14 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
class Profiles::NotificationsController < Profiles::ApplicationController
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2013-03-27 13:04:29 -04:00
|
|
|
def show
|
2016-06-06 11:50:54 -04:00
|
|
|
@user = current_user
|
2016-06-14 14:36:36 -04:00
|
|
|
@group_notifications = current_user.notification_settings.for_groups.order(:id)
|
|
|
|
@project_notifications = current_user.notification_settings.for_projects.order(:id)
|
2016-06-06 11:50:54 -04:00
|
|
|
@global_notification_setting = current_user.global_notification_setting
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2013-03-27 13:04:29 -04:00
|
|
|
|
|
|
|
def update
|
2017-09-27 05:48:33 -04:00
|
|
|
result = Users::UpdateService.new(current_user, user_params.merge(user: current_user)).execute
|
2017-06-15 06:36:46 -04:00
|
|
|
|
|
|
|
if result[:status] == :success
|
2016-03-29 12:59:03 -04:00
|
|
|
flash[:notice] = "Notification settings saved"
|
|
|
|
else
|
|
|
|
flash[:alert] = "Failed to save new settings"
|
2015-02-06 18:23:58 -05:00
|
|
|
end
|
2016-03-29 12:59:03 -04:00
|
|
|
|
|
|
|
redirect_back_or_default(default: profile_notifications_path)
|
2015-02-06 18:23:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def user_params
|
2017-03-16 23:18:57 -04:00
|
|
|
params.require(:user).permit(:notification_email, :notified_of_own_activity)
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
end
|