debian-mirror-gitlab/app/controllers/users/group_callouts_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
384 B
Ruby
Raw Normal View History

2021-11-11 11:23:49 +05:30
# frozen_string_literal: true
module Users
2022-01-26 12:08:38 +05:30
class GroupCalloutsController < Users::CalloutsController
2021-11-11 11:23:49 +05:30
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