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
|
2019-10-18 14:06:21 -04:00
|
|
|
@user = current_user
|
2020-08-28 11:10:21 -04:00
|
|
|
@user_groups = user_groups
|
2020-09-04 05:08:38 -04:00
|
|
|
@group_notifications = UserGroupNotificationSettingsFinder.new(current_user, user_groups).execute
|
2020-08-28 11:10:21 -04:00
|
|
|
|
2019-10-18 14:06:21 -04:00
|
|
|
@project_notifications = current_user.notification_settings.for_projects.order(:id)
|
2020-02-05 22:08:47 -05:00
|
|
|
.preload_source_route
|
2020-01-02 16:07:38 -05:00
|
|
|
.select { |notification| current_user.can?(:read_project, notification.source) }
|
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
|
2019-05-28 13:01:48 -04:00
|
|
|
flash[:notice] = _("Notification settings saved")
|
2016-03-29 12:59:03 -04:00
|
|
|
else
|
2019-05-28 13:01:48 -04:00
|
|
|
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
|
2020-08-28 11:10:21 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def user_groups
|
2020-09-04 05:08:38 -04:00
|
|
|
GroupsFinder.new(current_user, all_available: false).execute.order_name_asc.page(params[:page])
|
2020-08-28 11:10:21 -04:00
|
|
|
end
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|