summaryrefslogtreecommitdiff
path: root/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 704405bbcbd..28c08e9bbe7 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -70,11 +70,6 @@ InitializerConnections.with_disabled_database_connections do
Gitlab.ee do
resource :company, only: [:new, :create], controller: 'company'
-
- # legacy - to be removed with https://gitlab.com/gitlab-org/gitlab/-/issues/371996
- get 'groups/new', to: redirect('users/sign_up/groups_projects/new')
- get 'projects/new', to: redirect('users/sign_up/groups_projects/new')
-
resources :groups_projects, only: [:new, :create] do
collection do
post :import
@@ -141,28 +136,6 @@ InitializerConnections.with_disabled_database_connections do
get 'runner_setup/platforms' => 'runner_setup#platforms'
- # Boards resources shared between group and projects
- resources :boards, only: [] do
- resources :lists, module: :boards, only: [:index, :create, :update, :destroy] do
- collection do
- post :generate
- end
-
- resources :issues, only: [:index, :create, :update]
- end
-
- resources :issues, module: :boards, only: [:index, :update] do
- collection do
- put :bulk_move, format: :json
- end
- end
-
- Gitlab.ee do
- resources :users, module: :boards, only: [:index]
- resources :milestones, module: :boards, only: [:index]
- end
- end
-
get 'acme-challenge/' => 'acme_challenges#show'
scope :ide, as: :ide, format: false do