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
path: root/config
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-31 21:09:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-31 21:09:25 +0300
commit30b8ea126ffffc9bef610d38f8ebcd91bb687aba (patch)
tree3705b43015a6d3a1fd85864f1fc555383b8e248b /config
parenta5519693560d1ac4e120e1afd7d806d13a2d09fd (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config')
-rw-r--r--config/open_api.yml4
-rw-r--r--config/routes/project.rb4
2 files changed, 8 insertions, 0 deletions
diff --git a/config/open_api.yml b/config/open_api.yml
index b4c3df13f1e..29b2b622aaf 100644
--- a/config/open_api.yml
+++ b/config/open_api.yml
@@ -22,9 +22,13 @@ metadata:
description: Operations related to merge requests
- name: deploy_keys
description: Operations related to deploy keys
+ - name: deploy_tokens
+ description: Operations related to deploy tokens
- name: deployments
description: Operations related to deployments
- name: features
description: Operations related to managing Flipper-based feature flags
+ - name: freeze_periods
+ description: Operations related to deploy freeze periods
- name: release_links
description: Operations related to release assets (links)
diff --git a/config/routes/project.rb b/config/routes/project.rb
index f75d338dad4..56fd52db3b0 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -471,6 +471,10 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end
end
end
+
+ namespace :ml do
+ resources :experiments, only: [:index, :show], controller: 'experiments'
+ end
end
# End of the /-/ scope.