debian-mirror-gitlab/app/controllers/users/group_callouts_controller.rb
2021-11-11 11:23:49 +05:30

17 lines
381 B
Ruby

# frozen_string_literal: true
module Users
class GroupCalloutsController < UserCalloutsController
private
def callout
Users::DismissGroupCalloutService.new(
container: nil, current_user: current_user, params: callout_params
).execute
end
def callout_params
params.permit(:group_id).merge(feature_name: feature_name)
end
end
end