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/doc
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2018-11-30 18:08:56 +0300
committerNick Thomas <nick@gitlab.com>2018-11-30 18:08:56 +0300
commit93d6f56968f49d1c91dd73ddd25745ee781e9486 (patch)
treecc67696c0c3242a5587dda3109bfc4bb5201a03e /doc
parent55447c09f96e7a1cfdb5f563c83ccfb5f14934dd (diff)
parentb1e070bf4957a558ac51315dd4a6277056047e8a (diff)
Merge branch 'if-52811-fix_namespaces_api_routing' into 'master'
Fix API::Namespaces routing to accept namepaces with dots See merge request gitlab-org/gitlab-ce!22912
Diffstat (limited to 'doc')
-rw-r--r--doc/development/ee_features.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/ee_features.md b/doc/development/ee_features.md
index a227e2f6640..790b1bf951b 100644
--- a/doc/development/ee_features.md
+++ b/doc/development/ee_features.md
@@ -511,7 +511,7 @@ module EE
params do
requires :id, type: String, desc: 'The ID of a project'
end
- resource :projects, requirements: ::API::API::PROJECT_ENDPOINT_REQUIREMENTS do
+ resource :projects, requirements: ::API::API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
# ...
end
end