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

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

18 lines
396 B
Ruby
Raw Normal View History

2022-08-27 11:52:29 +05:30
# frozen_string_literal: true
module Users
class NamespaceCalloutsController < Users::CalloutsController
private
def callout
Users::DismissNamespaceCalloutService.new(
container: nil, current_user: current_user, params: callout_params
).execute
end
def callout_params
params.permit(:namespace_id).merge(feature_name: feature_name)
end
end
end