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:
authorJarka Kadlecová <jarka@gitlab.com>2018-02-07 13:52:51 +0300
committerJarka Kadlecová <jarka@gitlab.com>2018-02-07 13:52:51 +0300
commitf170913d734b2151761bb186856928425419155a (patch)
treead09bc2d67048bd8243c4ab9eff8affff537cadf /doc
parent1b2400b529628da08e406e2391ef37c0b05f889e (diff)
port ee changes
Diffstat (limited to 'doc')
-rw-r--r--doc/api/search.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/api/search.md b/doc/api/search.md
index 0c05a12c552..648c146cabc 100644
--- a/doc/api/search.md
+++ b/doc/api/search.md
@@ -1,5 +1,7 @@
# Search API
+[Introduced][ce-41763] in GitLab 10.5
+
Every API call to search must be authenticated.
## Global Search API
@@ -15,7 +17,7 @@ GET /search
| `scope` | string | yes | The scope to search in |
| `search` | string | yes | The search query |
-Search the expression within the specified scope. Currentyly these scopes are supported: projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs
+Search the expression within the specified scope. Currentyly these scopes are supported: projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs.
The response depends on the requested scope.
@@ -296,7 +298,7 @@ GET /groups/:id/-/search
| `scope` | string | yes | The scope to search in |
| `search` | string | yes | The search query |
-Search the expression within the specified scope. Currentyly these scopes are supported: projects, issues, merge_requests, milestones
+Search the expression within the specified scope. Currentyly these scopes are supported: projects, issues, merge_requests, milestones.
The response depends on the requested scope.
@@ -514,7 +516,7 @@ GET /projects/:id/-/search
| `scope` | string | yes | The scope to search in |
| `search` | string | yes | The search query |
-Search the expression within the specified scope. Currentyly these scopes are supported: issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs
+Search the expression within the specified scope. Currentyly these scopes are supported: issues, merge_requests, milestones, notes, wiki_blobs, commits, blobs.
The response depends on the requested scope.
@@ -791,3 +793,5 @@ Example response:
}
]
```
+
+[ce-41763]: https://gitlab.com/gitlab-org/gitlab-ce/issues/41763