gitlab-org--gitlab-foss/app/controllers/profiles/groups_controller.rb

27 lines
698 B
Ruby

# frozen_string_literal: true
class Profiles::GroupsController < Profiles::ApplicationController
include RoutableActions
feature_category :users
def update
group = find_routable!(Group, params[:id], request.path_info)
notification_setting = current_user.notification_settings_for(group)
if notification_setting.update(update_params)
flash[:notice] = "Notification settings for #{group.name} saved"
else
flash[:alert] = "Failed to save new settings for #{group.name}"
end
redirect_back_or_default(default: profile_notifications_path)
end
private
def update_params
params.require(:notification_setting).permit(:notification_email)
end
end