@templmf/temp-solf-lmf 0.0.107 → 0.0.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/gitlab-foss-8-17-stable/doc/api/README.md +391 -0
  2. package/gitlab-foss-8-17-stable/doc/api/access_requests.md +139 -0
  3. package/gitlab-foss-8-17-stable/doc/api/award_emoji.md +374 -0
  4. package/gitlab-foss-8-17-stable/doc/api/boards.md +241 -0
  5. package/gitlab-foss-8-17-stable/doc/api/branches.md +260 -0
  6. package/gitlab-foss-8-17-stable/doc/api/broadcast_messages.md +154 -0
  7. package/gitlab-foss-8-17-stable/doc/api/build_triggers.md +118 -0
  8. package/gitlab-foss-8-17-stable/doc/api/build_variables.md +128 -0
  9. package/gitlab-foss-8-17-stable/doc/api/builds.md +610 -0
  10. package/gitlab-foss-8-17-stable/doc/api/ci/README.md +24 -0
  11. package/gitlab-foss-8-17-stable/doc/api/ci/builds.md +147 -0
  12. package/gitlab-foss-8-17-stable/doc/api/ci/lint.md +49 -0
  13. package/gitlab-foss-8-17-stable/doc/api/ci/runners.md +59 -0
  14. package/gitlab-foss-8-17-stable/doc/api/commits.md +479 -0
  15. package/gitlab-foss-8-17-stable/doc/api/deploy_key_multiple_projects.md +29 -0
  16. package/gitlab-foss-8-17-stable/doc/api/deploy_keys.md +216 -0
  17. package/gitlab-foss-8-17-stable/doc/api/deployments.md +218 -0
  18. package/gitlab-foss-8-17-stable/doc/api/enviroments.md +121 -0
  19. package/gitlab-foss-8-17-stable/doc/api/groups.md +484 -0
  20. package/gitlab-foss-8-17-stable/doc/api/issues.md +856 -0
  21. package/gitlab-foss-8-17-stable/doc/api/keys.md +46 -0
  22. package/gitlab-foss-8-17-stable/doc/api/labels.md +257 -0
  23. package/gitlab-foss-8-17-stable/doc/api/members.md +175 -0
  24. package/gitlab-foss-8-17-stable/doc/api/merge_requests.md +1158 -0
  25. package/gitlab-foss-8-17-stable/doc/api/milestones.md +105 -0
  26. package/gitlab-foss-8-17-stable/doc/api/namespaces.md +70 -0
  27. package/gitlab-foss-8-17-stable/doc/api/notes.md +407 -0
  28. package/gitlab-foss-8-17-stable/doc/api/notification_settings.md +177 -0
  29. package/gitlab-foss-8-17-stable/doc/api/oauth2.md +137 -0
  30. package/gitlab-foss-8-17-stable/doc/api/pipelines.md +259 -0
  31. package/gitlab-foss-8-17-stable/doc/api/project_snippets.md +118 -0
  32. package/gitlab-foss-8-17-stable/doc/api/projects.md +1402 -0
  33. package/gitlab-foss-8-17-stable/doc/api/repositories.md +200 -0
  34. package/gitlab-foss-8-17-stable/doc/api/repository_files.md +134 -0
  35. package/gitlab-foss-8-17-stable/doc/api/runners.md +322 -0
  36. package/gitlab-foss-8-17-stable/doc/api/services.md +812 -0
  37. package/gitlab-foss-8-17-stable/doc/api/session.md +56 -0
  38. package/gitlab-foss-8-17-stable/doc/api/settings.md +126 -0
  39. package/gitlab-foss-8-17-stable/doc/api/sidekiq_metrics.md +152 -0
  40. package/gitlab-foss-8-17-stable/doc/api/snippets.md +232 -0
  41. package/gitlab-foss-8-17-stable/doc/api/system_hooks.md +146 -0
  42. package/gitlab-foss-8-17-stable/doc/api/tags.md +191 -0
  43. package/gitlab-foss-8-17-stable/doc/api/templates/gitignores.md +579 -0
  44. package/gitlab-foss-8-17-stable/doc/api/templates/gitlab_ci_ymls.md +120 -0
  45. package/gitlab-foss-8-17-stable/doc/api/templates/licenses.md +147 -0
  46. package/gitlab-foss-8-17-stable/doc/api/todos.md +296 -0
  47. package/gitlab-foss-8-17-stable/doc/api/users.md +835 -0
  48. package/gitlab-foss-8-17-stable/doc/api/v3_to_v4.md +14 -0
  49. package/gitlab-foss-8-17-stable/doc/api/version.md +23 -0
  50. package/package.json +1 -1
  51. package/SkillConfigPanel.vue +0 -2322
@@ -0,0 +1,147 @@
1
+ # Licenses
2
+
3
+ ## List license templates
4
+
5
+ Get all license templates.
6
+
7
+ ```
8
+ GET /templates/licenses
9
+ ```
10
+
11
+ | Attribute | Type | Required | Description |
12
+ | --------- | ------- | -------- | --------------------- |
13
+ | `popular` | boolean | no | If passed, returns only popular licenses |
14
+
15
+ ```bash
16
+ curl https://gitlab.example.com/api/v3/templates/licenses?popular=1
17
+ ```
18
+
19
+ Example response:
20
+
21
+ ```json
22
+ [
23
+ {
24
+ "key": "apache-2.0",
25
+ "name": "Apache License 2.0",
26
+ "nickname": null,
27
+ "featured": true,
28
+ "html_url": "http://choosealicense.com/licenses/apache-2.0/",
29
+ "source_url": "http://www.apache.org/licenses/LICENSE-2.0.html",
30
+ "description": "A permissive license that also provides an express grant of patent rights from contributors to users.",
31
+ "conditions": [
32
+ "include-copyright",
33
+ "document-changes"
34
+ ],
35
+ "permissions": [
36
+ "commercial-use",
37
+ "modifications",
38
+ "distribution",
39
+ "patent-use",
40
+ "private-use"
41
+ ],
42
+ "limitations": [
43
+ "trademark-use",
44
+ "no-liability"
45
+ ],
46
+ "content": " Apache License\n Version 2.0, January 2004\n [...]"
47
+ },
48
+ {
49
+ "key": "gpl-3.0",
50
+ "name": "GNU General Public License v3.0",
51
+ "nickname": "GNU GPLv3",
52
+ "featured": true,
53
+ "html_url": "http://choosealicense.com/licenses/gpl-3.0/",
54
+ "source_url": "http://www.gnu.org/licenses/gpl-3.0.txt",
55
+ "description": "The GNU GPL is the most widely used free software license and has a strong copyleft requirement. When distributing derived works, the source code of the work must be made available under the same license.",
56
+ "conditions": [
57
+ "include-copyright",
58
+ "document-changes",
59
+ "disclose-source",
60
+ "same-license"
61
+ ],
62
+ "permissions": [
63
+ "commercial-use",
64
+ "modifications",
65
+ "distribution",
66
+ "patent-use",
67
+ "private-use"
68
+ ],
69
+ "limitations": [
70
+ "no-liability"
71
+ ],
72
+ "content": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n [...]"
73
+ },
74
+ {
75
+ "key": "mit",
76
+ "name": "MIT License",
77
+ "nickname": null,
78
+ "featured": true,
79
+ "html_url": "http://choosealicense.com/licenses/mit/",
80
+ "source_url": "http://opensource.org/licenses/MIT",
81
+ "description": "A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.",
82
+ "conditions": [
83
+ "include-copyright"
84
+ ],
85
+ "permissions": [
86
+ "commercial-use",
87
+ "modifications",
88
+ "distribution",
89
+ "private-use"
90
+ ],
91
+ "limitations": [
92
+ "no-liability"
93
+ ],
94
+ "content": "The MIT License (MIT)\n\nCopyright (c) [year] [fullname]\n [...]"
95
+ }
96
+ ]
97
+ ```
98
+
99
+ ## Single license template
100
+
101
+ Get a single license template. You can pass parameters to replace the license
102
+ placeholder.
103
+
104
+ ```
105
+ GET /templates/licenses/:key
106
+ ```
107
+
108
+ | Attribute | Type | Required | Description |
109
+ | ---------- | ------ | -------- | ----------- |
110
+ | `key` | string | yes | The key of the license template |
111
+ | `project` | string | no | The copyrighted project name |
112
+ | `fullname` | string | no | The full-name of the copyright holder |
113
+
114
+ >**Note:**
115
+ If you omit the `fullname` parameter but authenticate your request, the name of
116
+ the authenticated user will be used to replace the copyright holder placeholder.
117
+
118
+ ```bash
119
+ curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/templates/licenses/mit?project=My+Cool+Project
120
+ ```
121
+
122
+ Example response:
123
+
124
+ ```json
125
+ {
126
+ "key": "mit",
127
+ "name": "MIT License",
128
+ "nickname": null,
129
+ "featured": true,
130
+ "html_url": "http://choosealicense.com/licenses/mit/",
131
+ "source_url": "http://opensource.org/licenses/MIT",
132
+ "description": "A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.",
133
+ "conditions": [
134
+ "include-copyright"
135
+ ],
136
+ "permissions": [
137
+ "commercial-use",
138
+ "modifications",
139
+ "distribution",
140
+ "private-use"
141
+ ],
142
+ "limitations": [
143
+ "no-liability"
144
+ ],
145
+ "content": "The MIT License (MIT)\n\nCopyright (c) 2016 John Doe\n [...]"
146
+ }
147
+ ```
@@ -0,0 +1,296 @@
1
+ # Todos
2
+
3
+ > [Introduced][ce-3188] in GitLab 8.10.
4
+
5
+ ## Get a list of todos
6
+
7
+ Returns a list of todos. When no filter is applied, it returns all pending todos
8
+ for the current user. Different filters allow the user to precise the request.
9
+
10
+ ```
11
+ GET /todos
12
+ ```
13
+
14
+ Parameters:
15
+
16
+ | Attribute | Type | Required | Description |
17
+ | --------- | ---- | -------- | ----------- |
18
+ | `action` | string | no | The action to be filtered. Can be `assigned`, `mentioned`, `build_failed`, `marked`, or `approval_required`. |
19
+ | `author_id` | integer | no | The ID of an author |
20
+ | `project_id` | integer | no | The ID of a project |
21
+ | `state` | string | no | The state of the todo. Can be either `pending` or `done` |
22
+ | `type` | string | no | The type of a todo. Can be either `Issue` or `MergeRequest` |
23
+
24
+ ```bash
25
+ curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/todos
26
+ ```
27
+
28
+ Example Response:
29
+
30
+ ```json
31
+ [
32
+ {
33
+ "id": 102,
34
+ "project": {
35
+ "id": 2,
36
+ "name": "Gitlab Ce",
37
+ "name_with_namespace": "Gitlab Org / Gitlab Ce",
38
+ "path": "gitlab-ce",
39
+ "path_with_namespace": "gitlab-org/gitlab-ce"
40
+ },
41
+ "author": {
42
+ "name": "Administrator",
43
+ "username": "root",
44
+ "id": 1,
45
+ "state": "active",
46
+ "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
47
+ "web_url": "https://gitlab.example.com/root"
48
+ },
49
+ "action_name": "marked",
50
+ "target_type": "MergeRequest",
51
+ "target": {
52
+ "id": 34,
53
+ "iid": 7,
54
+ "project_id": 2,
55
+ "title": "Dolores in voluptatem tenetur praesentium omnis repellendus voluptatem quaerat.",
56
+ "description": "Et ea et omnis illum cupiditate. Dolor aspernatur tenetur ducimus facilis est nihil. Quo esse cupiditate molestiae illo corrupti qui quidem dolor.",
57
+ "state": "opened",
58
+ "created_at": "2016-06-17T07:49:24.419Z",
59
+ "updated_at": "2016-06-17T07:52:43.484Z",
60
+ "target_branch": "tutorials_git_tricks",
61
+ "source_branch": "DNSBL_docs",
62
+ "upvotes": 0,
63
+ "downvotes": 0,
64
+ "author": {
65
+ "name": "Maxie Medhurst",
66
+ "username": "craig_rutherford",
67
+ "id": 12,
68
+ "state": "active",
69
+ "avatar_url": "http://www.gravatar.com/avatar/a0d477b3ea21970ce6ffcbb817b0b435?s=80&d=identicon",
70
+ "web_url": "https://gitlab.example.com/craig_rutherford"
71
+ },
72
+ "assignee": {
73
+ "name": "Administrator",
74
+ "username": "root",
75
+ "id": 1,
76
+ "state": "active",
77
+ "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
78
+ "web_url": "https://gitlab.example.com/root"
79
+ },
80
+ "source_project_id": 2,
81
+ "target_project_id": 2,
82
+ "labels": [],
83
+ "work_in_progress": false,
84
+ "milestone": {
85
+ "id": 32,
86
+ "iid": 2,
87
+ "project_id": 2,
88
+ "title": "v1.0",
89
+ "description": "Assumenda placeat ea voluptatem voluptate qui.",
90
+ "state": "active",
91
+ "created_at": "2016-06-17T07:47:34.163Z",
92
+ "updated_at": "2016-06-17T07:47:34.163Z",
93
+ "due_date": null
94
+ },
95
+ "merge_when_build_succeeds": false,
96
+ "merge_status": "cannot_be_merged",
97
+ "subscribed": true,
98
+ "user_notes_count": 7
99
+ },
100
+ "target_url": "https://gitlab.example.com/gitlab-org/gitlab-ce/merge_requests/7",
101
+ "body": "Dolores in voluptatem tenetur praesentium omnis repellendus voluptatem quaerat.",
102
+ "state": "pending",
103
+ "created_at": "2016-06-17T07:52:35.225Z"
104
+ },
105
+ {
106
+ "id": 98,
107
+ "project": {
108
+ "id": 2,
109
+ "name": "Gitlab Ce",
110
+ "name_with_namespace": "Gitlab Org / Gitlab Ce",
111
+ "path": "gitlab-ce",
112
+ "path_with_namespace": "gitlab-org/gitlab-ce"
113
+ },
114
+ "author": {
115
+ "name": "Maxie Medhurst",
116
+ "username": "craig_rutherford",
117
+ "id": 12,
118
+ "state": "active",
119
+ "avatar_url": "http://www.gravatar.com/avatar/a0d477b3ea21970ce6ffcbb817b0b435?s=80&d=identicon",
120
+ "web_url": "https://gitlab.example.com/craig_rutherford"
121
+ },
122
+ "action_name": "assigned",
123
+ "target_type": "MergeRequest",
124
+ "target": {
125
+ "id": 34,
126
+ "iid": 7,
127
+ "project_id": 2,
128
+ "title": "Dolores in voluptatem tenetur praesentium omnis repellendus voluptatem quaerat.",
129
+ "description": "Et ea et omnis illum cupiditate. Dolor aspernatur tenetur ducimus facilis est nihil. Quo esse cupiditate molestiae illo corrupti qui quidem dolor.",
130
+ "state": "opened",
131
+ "created_at": "2016-06-17T07:49:24.419Z",
132
+ "updated_at": "2016-06-17T07:52:43.484Z",
133
+ "target_branch": "tutorials_git_tricks",
134
+ "source_branch": "DNSBL_docs",
135
+ "upvotes": 0,
136
+ "downvotes": 0,
137
+ "author": {
138
+ "name": "Maxie Medhurst",
139
+ "username": "craig_rutherford",
140
+ "id": 12,
141
+ "state": "active",
142
+ "avatar_url": "http://www.gravatar.com/avatar/a0d477b3ea21970ce6ffcbb817b0b435?s=80&d=identicon",
143
+ "web_url": "https://gitlab.example.com/craig_rutherford"
144
+ },
145
+ "assignee": {
146
+ "name": "Administrator",
147
+ "username": "root",
148
+ "id": 1,
149
+ "state": "active",
150
+ "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
151
+ "web_url": "https://gitlab.example.com/root"
152
+ },
153
+ "source_project_id": 2,
154
+ "target_project_id": 2,
155
+ "labels": [],
156
+ "work_in_progress": false,
157
+ "milestone": {
158
+ "id": 32,
159
+ "iid": 2,
160
+ "project_id": 2,
161
+ "title": "v1.0",
162
+ "description": "Assumenda placeat ea voluptatem voluptate qui.",
163
+ "state": "active",
164
+ "created_at": "2016-06-17T07:47:34.163Z",
165
+ "updated_at": "2016-06-17T07:47:34.163Z",
166
+ "due_date": null
167
+ },
168
+ "merge_when_build_succeeds": false,
169
+ "merge_status": "cannot_be_merged",
170
+ "subscribed": true,
171
+ "user_notes_count": 7
172
+ },
173
+ "target_url": "https://gitlab.example.com/gitlab-org/gitlab-ce/merge_requests/7",
174
+ "body": "Dolores in voluptatem tenetur praesentium omnis repellendus voluptatem quaerat.",
175
+ "state": "pending",
176
+ "created_at": "2016-06-17T07:49:24.624Z"
177
+ }
178
+ ]
179
+ ```
180
+
181
+ ## Mark a todo as done
182
+
183
+ Marks a single pending todo given by its ID for the current user as done. The
184
+ todo marked as done is returned in the response.
185
+
186
+ ```
187
+ DELETE /todos/:id
188
+ ```
189
+
190
+ Parameters:
191
+
192
+ | Attribute | Type | Required | Description |
193
+ | --------- | ---- | -------- | ----------- |
194
+ | `id` | integer | yes | The ID of a todo |
195
+
196
+ ```bash
197
+ curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/todos/130
198
+ ```
199
+
200
+ Example Response:
201
+
202
+ ```json
203
+ {
204
+ "id": 102,
205
+ "project": {
206
+ "id": 2,
207
+ "name": "Gitlab Ce",
208
+ "name_with_namespace": "Gitlab Org / Gitlab Ce",
209
+ "path": "gitlab-ce",
210
+ "path_with_namespace": "gitlab-org/gitlab-ce"
211
+ },
212
+ "author": {
213
+ "name": "Administrator",
214
+ "username": "root",
215
+ "id": 1,
216
+ "state": "active",
217
+ "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
218
+ "web_url": "https://gitlab.example.com/root"
219
+ },
220
+ "action_name": "marked",
221
+ "target_type": "MergeRequest",
222
+ "target": {
223
+ "id": 34,
224
+ "iid": 7,
225
+ "project_id": 2,
226
+ "title": "Dolores in voluptatem tenetur praesentium omnis repellendus voluptatem quaerat.",
227
+ "description": "Et ea et omnis illum cupiditate. Dolor aspernatur tenetur ducimus facilis est nihil. Quo esse cupiditate molestiae illo corrupti qui quidem dolor.",
228
+ "state": "opened",
229
+ "created_at": "2016-06-17T07:49:24.419Z",
230
+ "updated_at": "2016-06-17T07:52:43.484Z",
231
+ "target_branch": "tutorials_git_tricks",
232
+ "source_branch": "DNSBL_docs",
233
+ "upvotes": 0,
234
+ "downvotes": 0,
235
+ "author": {
236
+ "name": "Maxie Medhurst",
237
+ "username": "craig_rutherford",
238
+ "id": 12,
239
+ "state": "active",
240
+ "avatar_url": "http://www.gravatar.com/avatar/a0d477b3ea21970ce6ffcbb817b0b435?s=80&d=identicon",
241
+ "web_url": "https://gitlab.example.com/craig_rutherford"
242
+ },
243
+ "assignee": {
244
+ "name": "Administrator",
245
+ "username": "root",
246
+ "id": 1,
247
+ "state": "active",
248
+ "avatar_url": "http://www.gravatar.com/avatar/e64c7d89f26bd1972efa854d13d7dd61?s=80&d=identicon",
249
+ "web_url": "https://gitlab.example.com/root"
250
+ },
251
+ "source_project_id": 2,
252
+ "target_project_id": 2,
253
+ "labels": [],
254
+ "work_in_progress": false,
255
+ "milestone": {
256
+ "id": 32,
257
+ "iid": 2,
258
+ "project_id": 2,
259
+ "title": "v1.0",
260
+ "description": "Assumenda placeat ea voluptatem voluptate qui.",
261
+ "state": "active",
262
+ "created_at": "2016-06-17T07:47:34.163Z",
263
+ "updated_at": "2016-06-17T07:47:34.163Z",
264
+ "due_date": null
265
+ },
266
+ "merge_when_build_succeeds": false,
267
+ "merge_status": "cannot_be_merged",
268
+ "subscribed": true,
269
+ "user_notes_count": 7
270
+ },
271
+ "target_url": "https://gitlab.example.com/gitlab-org/gitlab-ce/merge_requests/7",
272
+ "body": "Dolores in voluptatem tenetur praesentium omnis repellendus voluptatem quaerat.",
273
+ "state": "done",
274
+ "created_at": "2016-06-17T07:52:35.225Z"
275
+ }
276
+ ```
277
+
278
+ ## Mark all todos as done
279
+
280
+ Marks all pending todos for the current user as done. It returns the number of marked todos.
281
+
282
+ ```
283
+ DELETE /todos
284
+ ```
285
+
286
+ ```bash
287
+ curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/todos
288
+ ```
289
+
290
+ Example Response:
291
+
292
+ ```json
293
+ 3
294
+ ```
295
+
296
+ [ce-3188]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3188