debian-mirror-gitlab/app/controllers/profiles/notifications_controller.rb

36 lines
1.3 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-09-11 14:41:01 +05:30
class Profiles::NotificationsController < Profiles::ApplicationController
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2014-09-02 18:07:02 +05:30
def show
2019-12-21 20:55:43 +05:30
@user = current_user
2020-03-13 15:44:24 +05:30
@group_notifications = current_user.notification_settings.preload_source_route.for_groups.order(:id)
2019-12-21 20:55:43 +05:30
@group_notifications += GroupsFinder.new(
current_user,
all_available: false,
exclude_group_ids: @group_notifications.select(:source_id)
).execute.map { |group| current_user.notification_settings_for(group, inherit: true) }
@project_notifications = current_user.notification_settings.for_projects.order(:id)
2020-03-13 15:44:24 +05:30
.preload_source_route
2020-01-03 18:37:03 +05:30
.select { |notification| current_user.can?(:read_project, notification.source) }
@global_notification_setting = current_user.global_notification_setting
2014-09-02 18:07:02 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2014-09-02 18:07:02 +05:30
def update
2018-03-17 18:26:18 +05:30
result = Users::UpdateService.new(current_user, user_params.merge(user: current_user)).execute
2017-09-10 17:25:29 +05:30
if result[:status] == :success
2019-09-04 21:01:54 +05:30
flash[:notice] = _("Notification settings saved")
2016-06-02 11:05:42 +05:30
else
2019-09-04 21:01:54 +05:30
flash[:alert] = _("Failed to save new settings")
2015-04-26 12:48:37 +05:30
end
2016-06-02 11:05:42 +05:30
redirect_back_or_default(default: profile_notifications_path)
2015-04-26 12:48:37 +05:30
end
def user_params
2017-08-17 22:00:37 +05:30
params.require(:user).permit(:notification_email, :notified_of_own_activity)
end
2014-09-02 18:07:02 +05:30
end