@@ -26,7 +26,7 @@ public SearchApi(GitLabApi gitLabApi) {
26
26
/**
27
27
* Search globally across the GitLab instance.
28
28
*
29
- * <pre><code>GitLab Endpoint: POST /search?scope=:scope&search=:search-query</code></pre>
29
+ * <pre><code>GitLab Endpoint: POST /search?scope=:scope& search=:search-query</code></pre>
30
30
*
31
31
* @param scope search the expression within the specified scope. Currently these scopes are supported:
32
32
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
@@ -42,7 +42,7 @@ public List<?> globalSearch(SearchScope scope, String search) throws GitLabApiEx
42
42
/**
43
43
* Search globally across the GitLab instance.
44
44
*
45
- * <pre><code>GitLab Endpoint: POST /search?scope=:scope&search=:search-query</code></pre>
45
+ * <pre><code>GitLab Endpoint: POST /search?scope=:scope& search=:search-query</code></pre>
46
46
*
47
47
* @param scope search the expression within the specified scope. Currently these scopes are supported:
48
48
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
@@ -58,7 +58,7 @@ public Stream<?> globalSearchStream(SearchScope scope, String search) throws Git
58
58
/**
59
59
* Search globally across the GitLab instance.
60
60
*
61
- * <pre><code>GitLab Endpoint: POST /search?scope=:scope&search=:search-query</code></pre>
61
+ * <pre><code>GitLab Endpoint: POST /search?scope=:scope& search=:search-query</code></pre>
62
62
*
63
63
* @param scope search the expression within the specified scope. Currently these scopes are supported:
64
64
* projects, issues, merge_requests, milestones, snippet_titles, snippet_blobs, users
@@ -114,7 +114,7 @@ public Pager<?> globalSearch(SearchScope scope, String search, int itemsPerPage)
114
114
* Search within the specified group. If a user is not a member of a group and the group is private,
115
115
* a request on that group will result to a 404 status code.
116
116
*
117
- * <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query</code></pre>
117
+ * <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope& search=:search-query</code></pre>
118
118
*
119
119
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
120
120
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -132,7 +132,7 @@ public List<?> groupSearch(Object groupIdOrPath, GroupSearchScope scope, String
132
132
* Search within the specified group. If a user is not a member of a group and the group is private,
133
133
* a request on that group will result to a 404 status code.
134
134
*
135
- * <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query</code></pre>
135
+ * <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope& search=:search-query</code></pre>
136
136
*
137
137
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
138
138
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -150,7 +150,7 @@ public Stream<?> groupSearchStream(Object groupIdOrPath, GroupSearchScope scope,
150
150
* Search within the specified group. If a user is not a member of a group and the group is private,
151
151
* a request on that group will result to a 404 status code.
152
152
*
153
- * <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope&search=:search-query</code></pre>
153
+ * <pre><code>GitLab Endpoint: POST /groups/:groupId/search?scope=:scope& search=:search-query</code></pre>
154
154
*
155
155
* @param groupIdOrPath the group ID, path of the group, or a Group instance holding the group ID or path, required
156
156
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -197,7 +197,7 @@ public Pager<?> groupSearch(Object groupIdOrPath, GroupSearchScope scope, String
197
197
* Search within the specified project. If a user is not a member of a project and the project is private,
198
198
* a request on that project will result to a 404 status code.
199
199
*
200
- * <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query</code></pre>
200
+ * <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope& search=:search-query</code></pre>
201
201
*
202
202
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
203
203
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -215,7 +215,7 @@ public List<?> projectSearch(Object projectIdOrPath, ProjectSearchScope scope, S
215
215
* Search within the specified project. If a user is not a member of a project and the project is private,
216
216
* a request on that project will result to a 404 status code.
217
217
*
218
- * <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope&search=:search-query</code></pre>
218
+ * <pre><code>GitLab Endpoint: POST /projects/:projectId/search?scope=:scope& search=:search-query</code></pre>
219
219
*
220
220
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
221
221
* @param scope search the expression within the specified scope. Currently these scopes are supported:
@@ -233,7 +233,7 @@ public Stream<?> projectSearchStream(Object projectIdOrPath, ProjectSearchScope
233
233
* Search within the specified project. If a user is not a member of a project and the project is private,
234
234
* a request on that project will result to a 404 status code.
235
235
*
236
- * <pre><code>GitLab Endpoint: POST /project/:projectId/search?scope=:scope&search=:search-query</code></pre>
236
+ * <pre><code>GitLab Endpoint: POST /project/:projectId/search?scope=:scope& search=:search-query</code></pre>
237
237
*
238
238
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
239
239
* @param scope search the expression within the specified scope. Currently these scopes are supported:
0 commit comments