summaryrefslogtreecommitdiff
path: root/config/routes/profile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes/profile.rb')
-rw-r--r--config/routes/profile.rb15
1 files changed, 2 insertions, 13 deletions
diff --git a/config/routes/profile.rb b/config/routes/profile.rb
index 403f430850e..fcf8812ee2e 100644
--- a/config/routes/profile.rb
+++ b/config/routes/profile.rb
@@ -1,3 +1,5 @@
+# frozen_string_literal: true
+
# for secondary email confirmations - uses the same confirmation controller as :users
devise_for :emails, path: 'profile/emails', controllers: { confirmations: :confirmations }
@@ -42,14 +44,6 @@ resource :profile, only: [:show, :update] do
end
end
- Gitlab.ee do
- resource :slack, only: [:edit] do
- member do
- get :slack_link
- end
- end
- end
-
resources :chat_names, only: [:index, :new, :create, :destroy] do
collection do
delete :deny
@@ -73,10 +67,5 @@ resource :profile, only: [:show, :update] do
end
resources :u2f_registrations, only: [:destroy]
-
- Gitlab.ee do
- resources :pipeline_quota, only: [:index]
- resources :billings, only: [:index]
- end
end
end