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.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/routes/profile.rb b/config/routes/profile.rb
index 0e213b0b989..83a2b33514b 100644
--- a/config/routes/profile.rb
+++ b/config/routes/profile.rb
@@ -40,6 +40,15 @@ resource :profile, only: [:show, :update] do
put :resend_confirmation_instructions
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
@@ -63,5 +72,10 @@ 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