Commit 1f451bd7 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets Committed by Jan Provaznik

Move some project routes under - scope

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent b714a0f9
---
title: Move some project routes under - scope
merge_request: 19954
author:
type: deprecated
...@@ -191,6 +191,31 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do ...@@ -191,6 +191,31 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
get 'proxy/:datasource_id/*proxy_path', to: 'grafana_api#proxy' get 'proxy/:datasource_id/*proxy_path', to: 'grafana_api#proxy'
get :metrics_dashboard, to: 'grafana_api#metrics_dashboard' get :metrics_dashboard, to: 'grafana_api#metrics_dashboard'
end end
resource :mattermost, only: [:new, :create]
resource :variables, only: [:show, :update]
resources :triggers, only: [:index, :create, :edit, :update, :destroy]
resource :mirror, only: [:show, :update] do
member do
get :ssh_host_keys, constraints: { format: :json }
post :update_now
end
end
resource :cycle_analytics, only: [:show]
namespace :cycle_analytics do
scope :events, controller: 'events' do
get :issue
get :plan
get :code
get :test
get :review
get :staging
get :production
end
end
end end
# End of the /-/ scope. # End of the /-/ scope.
...@@ -235,8 +260,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do ...@@ -235,8 +260,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end end
end end
resource :mattermost, only: [:new, :create]
namespace :prometheus do namespace :prometheus do
resources :metrics, constraints: { id: %r{[^\/]+} }, only: [:index, :new, :create, :edit, :update, :destroy] do resources :metrics, constraints: { id: %r{[^\/]+} }, only: [:index, :new, :create, :edit, :update, :destroy] do
get :active_common, on: :collection get :active_common, on: :collection
...@@ -364,17 +387,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do ...@@ -364,17 +387,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
put '/service_desk' => 'service_desk#update', as: :service_desk_refresh put '/service_desk' => 'service_desk#update', as: :service_desk_refresh
end end
resource :variables, only: [:show, :update]
resources :triggers, only: [:index, :create, :edit, :update, :destroy]
resource :mirror, only: [:show, :update] do
member do
get :ssh_host_keys, constraints: { format: :json }
post :update_now
end
end
Gitlab.ee do Gitlab.ee do
resources :push_rules, constraints: { id: /\d+/ }, only: [:update] resources :push_rules, constraints: { id: /\d+/ }, only: [:update]
end end
...@@ -463,20 +475,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do ...@@ -463,20 +475,6 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end end
end end
resource :cycle_analytics, only: [:show]
namespace :cycle_analytics do
scope :events, controller: 'events' do
get :issue
get :plan
get :code
get :test
get :review
get :staging
get :production
end
end
namespace :serverless do namespace :serverless do
scope :functions do scope :functions do
get '/:environment_id/:id', to: 'functions#show' get '/:environment_id/:id', to: 'functions#show'
...@@ -678,7 +676,8 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do ...@@ -678,7 +676,8 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
:network, :graphs, :autocomplete_sources, :network, :graphs, :autocomplete_sources,
:project_members, :deploy_keys, :deploy_tokens, :project_members, :deploy_keys, :deploy_tokens,
:labels, :milestones, :services, :boards, :releases, :labels, :milestones, :services, :boards, :releases,
:forks, :group_links, :import, :avatar) :forks, :group_links, :import, :avatar, :mirror,
:cycle_analytics, :mattermost, :variables, :triggers)
end end
end end
end end
...@@ -3,7 +3,7 @@ import MockAdapter from 'axios-mock-adapter'; ...@@ -3,7 +3,7 @@ import MockAdapter from 'axios-mock-adapter';
import axios from '~/lib/utils/axios_utils'; import axios from '~/lib/utils/axios_utils';
import AjaxFormVariableList from '~/ci_variable_list/ajax_variable_list'; import AjaxFormVariableList from '~/ci_variable_list/ajax_variable_list';
const VARIABLE_PATCH_ENDPOINT = 'http://test.host/frontend-fixtures/builds-project/variables'; const VARIABLE_PATCH_ENDPOINT = 'http://test.host/frontend-fixtures/builds-project/-/variables';
const HIDE_CLASS = 'hide'; const HIDE_CLASS = 'hide';
describe('AjaxFormVariableList', () => { describe('AjaxFormVariableList', () => {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment