summaryrefslogtreecommitdiff
path: root/app/controllers/users
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-17 12:10:08 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-17 12:10:08 +0000
commit8060e5c60901ab0f6b890414dccbdf5d1b95c3ad (patch)
treefc217fe53f68a45ea225c0d1b966642852d96321 /app/controllers/users
parentb9b58dba70466949d761132d2d96f0f24c0b469c (diff)
downloadgitlab-ce-8060e5c60901ab0f6b890414dccbdf5d1b95c3ad.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/users')
-rw-r--r--app/controllers/users/namespace_callouts_controller.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/controllers/users/namespace_callouts_controller.rb b/app/controllers/users/namespace_callouts_controller.rb
deleted file mode 100644
index d4876382dfe..00000000000
--- a/app/controllers/users/namespace_callouts_controller.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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