Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 1258675df86..3b0370551b9 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -51,10 +51,12 @@ Rails.application.routes.draw do
Gitlab.ee do
get :trial_getting_started, on: :collection
get :trial_onboarding_board, on: :collection
+ get :continuous_onboarding_getting_started, on: :collection
end
end
resource :experience_level, only: [:show, :update]
+ resources :invites, only: [:new, :create]
Gitlab.ee do
resources :groups, only: [:new, :create]
@@ -75,6 +77,9 @@ Rails.application.routes.draw do
# Health check
get 'health_check(/:checks)' => 'health_check#index', as: :health_check
+ # Terraform service discovery
+ get '.well-known/terraform.json' => 'terraform/services#index', as: :terraform_services
+
# Begin of the /-/ scope.
# Use this scope for all new global routes.
scope path: '-' do