summaryrefslogtreecommitdiff
path: root/config/routes/project.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes/project.rb')
-rw-r--r--config/routes/project.rb18
1 files changed, 10 insertions, 8 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 18d72acd214..93940c3b99a 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -210,8 +210,11 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
namespace :prometheus do
resources :metrics, constraints: { id: %r{[^\/]+} }, only: [:index, :new, :create, :edit, :update, :destroy] do
- post :validate_query, on: :collection
get :active_common, on: :collection
+
+ Gitlab.ee do
+ post :validate_query, on: :collection
+ end
end
Gitlab.ee do
@@ -359,13 +362,10 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
get :builds
get :failures
get :status
- get :security
- get :licenses
- end
- member do
- resources :stages, only: [], param: :name do
- post :play_manual
+ Gitlab.ee do
+ get :security
+ get :licenses
end
end
@@ -508,7 +508,9 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end
end
- resources :issue_links, only: [:index, :create, :destroy], as: 'links', path: 'links'
+ Gitlab.ee do
+ resources :issue_links, only: [:index, :create, :destroy], as: 'links', path: 'links'
+ end
end
resources :notes, only: [:create, :destroy, :update], concerns: :awardable, constraints: { id: /\d+/ } do