Skip to content

Commit 01e2079

Browse files
committed
New universal skills.
1 parent 920f2a4 commit 01e2079

213 files changed

Lines changed: 2242 additions & 1743 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
hooks:
2929
- id: black
3030
- repo: https://github.com/astral-sh/ruff-pre-commit
31-
rev: v0.15.2
31+
rev: v0.15.4
3232
hooks:
3333
- id: ruff
3434
exclude: ^(test/|tests/|gitlab_api/gitlab_gql\.py$)

compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ services:
7272
- "MODEL_ID=${MODEL_ID:-qwen/qwen3-coder-next}"
7373
- "DEBUG=False"
7474
- "ENABLE_WEB_UI=True"
75+
- "ENABLE_OTEL=True"
7576
ports:
7677
- "9017:9017"
7778
healthcheck:

gitlab_api/skills/gitlab-api-docs/SKILL.md

Lines changed: 213 additions & 199 deletions
Large diffs are not rendered by default.

gitlab_api/skills/gitlab-api-docs/reference/api_access_requests.md renamed to gitlab_api/skills/gitlab-api-docs/reference/access_requests.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,9 @@ Example request:
226226
shell
227227
```
228228
curl --request GET \
229-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
229+
--header "PRIVATE-TOKEN: <your_access_token>" \
230230
--url "https://gitlab.example.com/api/v4/groups/:id/access_requests"
231-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" \
231+
curl --header "PRIVATE-TOKEN: <your_access_token>" \
232232
--url "https://gitlab.example.com/api/v4/projects/:id/access_requests"
233233
```
234234

@@ -273,10 +273,10 @@ Example request:
273273
shell
274274
```
275275
curl --request POST \
276-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
276+
--header "PRIVATE-TOKEN: <your_access_token>" \
277277
--url "https://gitlab.example.com/api/v4/groups/:id/access_requests"
278278
curl --request POST \
279-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
279+
--header "PRIVATE-TOKEN: <your_access_token>" \
280280
--url "https://gitlab.example.com/api/v4/projects/:id/access_requests"
281281
```
282282

@@ -309,10 +309,10 @@ Example request:
309309
shell
310310
```
311311
curl --request PUT \
312-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
312+
--header "PRIVATE-TOKEN: <your_access_token>" \
313313
--url "https://gitlab.example.com/api/v4/groups/:id/access_requests/:user_id/approve?access_level=20"
314314
curl --request PUT \
315-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
315+
--header "PRIVATE-TOKEN: <your_access_token>" \
316316
--url "https://gitlab.example.com/api/v4/projects/:id/access_requests/:user_id/approve?access_level=20"
317317
```
318318

@@ -344,10 +344,10 @@ Example request:
344344
shell
345345
```
346346
curl --request DELETE \
347-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
347+
--header "PRIVATE-TOKEN: <your_access_token>" \
348348
--url "https://gitlab.example.com/api/v4/groups/:id/access_requests/:user_id"
349349
curl --request DELETE \
350-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
350+
--header "PRIVATE-TOKEN: <your_access_token>" \
351351
--url "https://gitlab.example.com/api/v4/projects/:id/access_requests/:user_id"
352352
```
353353

@@ -398,7 +398,7 @@ Resources
398398
* Cookie Preferences
399399

400400

401-
401+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2Faccess_requests%2F&_biz_t=1772174206087&_biz_i=Group%20and%20project%20access%20requests%20API%20%7C%20GitLab%20Docs&_biz_n=8&rnd=122237&cdn_o=a&_biz_z=1772174206088)
402402
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
403403
## Privacy Preference Center
404404
## Privacy Preference Center
@@ -414,7 +414,7 @@ Resources
414414
#### Your Privacy
415415
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
416416
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
417-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
417+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
418418
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
419419
**Timestamp:** --
420420
#### Strictly Necessary Cookies

gitlab_api/skills/gitlab-api-docs/reference/api_admin_ai_catalog.md renamed to gitlab_api/skills/gitlab-api-docs/reference/admin_ai_catalog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ POST /api/v4/admin/ai_catalog/seed_external_agents
232232
Example request:
233233
```
234234
curl --request POST \
235-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
235+
--header "PRIVATE-TOKEN: <your_access_token>" \
236236
--url "https://primary.example.com/api/v4/admin/ai_catalog/seed_external_agents"
237237
```
238238

@@ -304,7 +304,7 @@ Resources
304304
* Cookie Preferences
305305

306306

307-
307+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2F&_biz_t=1772174205429&_biz_i=GitLab%20Docs&_biz_n=2&rnd=190107&cdn_o=a&_biz_z=1772174205727)![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2F&_biz_t=1772174205568&_biz_i=Extend%20with%20GitLab%20%7C%20GitLab%20Docs&_biz_n=3&rnd=145233&cdn_o=a&_biz_z=1772174205728)![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fadministration%2F&_biz_t=1772174205623&_biz_i=Administer%20GitLab%20%7C%20GitLab%20Docs&_biz_n=4&rnd=237183&cdn_o=a&_biz_z=1772174205728)![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2Fadmin%2Fai_catalog%2F&_biz_t=1772174205727&_biz_i=AI%20Catalog%20admin%20API%20%7C%20GitLab%20Docs&_biz_n=5&rnd=919960&cdn_o=a&_biz_z=1772174205728)
308308
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
309309
## Privacy Preference Center
310310
## Privacy Preference Center
@@ -320,7 +320,7 @@ Resources
320320
#### Your Privacy
321321
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
322322
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
323-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
323+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
324324
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
325325
**Timestamp:** --
326326
#### Strictly Necessary Cookies

gitlab_api/skills/gitlab-api-docs/reference/api_admin_data_management.md renamed to gitlab_api/skills/gitlab-api-docs/reference/admin_data_management.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Attribute | Type | Description
267267
`record_identifier` | string or integer | Unique identifier of the record. Can be an integer or a base64 encoded string.
268268
shell
269269
```
270-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" "https://primary.example.com/api/v4/admin/data_management/projects?pagination=keyset"
270+
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://primary.example.com/api/v4/admin/data_management/projects?pagination=keyset"
271271
```
272272

273273
Example response:
@@ -323,7 +323,7 @@ Attribute | Type | Description
323323
`status` | string | Can be “success” or “error”.
324324
shell
325325
```
326-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" "https://primary.example.com/api/v4/admin/data_management/projects/checksum"
326+
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://primary.example.com/api/v4/admin/data_management/projects/checksum"
327327
```
328328

329329
Example response:
@@ -355,7 +355,7 @@ Attribute | Type | Description
355355
`record_identifier` | string or integer | Unique identifier of the record. Can be an integer or a base64 encoded string.
356356
shell
357357
```
358-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" "https://primary.example.com/api/v4/admin/data_management/projects/1"
358+
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://primary.example.com/api/v4/admin/data_management/projects/1"
359359
```
360360

361361
Example response:
@@ -390,7 +390,7 @@ Attribute | Type | Required | Description
390390
If successful, it returns [`200`](https://docs.gitlab.com/api/rest/troubleshooting/#status-codes) and information about the specific model record.
391391
shell
392392
```
393-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" "https://primary.example.com/api/v4/admin/data_management/projects/1/checksum"
393+
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://primary.example.com/api/v4/admin/data_management/projects/1/checksum"
394394
```
395395

396396
Example response:
@@ -459,7 +459,7 @@ Resources
459459
* Cookie Preferences
460460

461461

462-
462+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2Fadmin%2Fdata_management%2F&_biz_t=1772174205985&_biz_i=Data%20management%20API%20%7C%20GitLab%20Docs&_biz_n=7&rnd=757415&cdn_o=a&_biz_z=1772174205985)
463463
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
464464
## Privacy Preference Center
465465
## Privacy Preference Center
@@ -475,7 +475,7 @@ Resources
475475
#### Your Privacy
476476
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
477477
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
478-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
478+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
479479
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
480480
**Timestamp:** --
481481
#### Strictly Necessary Cookies

gitlab_api/skills/gitlab-api-docs/reference/api_admin_sidekiq_queues.md renamed to gitlab_api/skills/gitlab-api-docs/reference/admin_sidekiq_queues.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Example request:
239239
shell
240240
```
241241
curl --request DELETE \
242-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
242+
--header "PRIVATE-TOKEN: <your_access_token>" \
243243
--url "https://gitlab.example.com/api/v4/admin/sidekiq/queues/:queue_name"
244244
```
245245

@@ -297,7 +297,7 @@ Resources
297297
* Cookie Preferences
298298

299299

300-
300+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2Fadmin_sidekiq_queues%2F&_biz_t=1772174206179&_biz_i=Sidekiq%20queues%20administration%20API%20%7C%20GitLab%20Docs&_biz_n=9&rnd=913607&cdn_o=a&_biz_z=1772174206180)
301301
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
302302
## Privacy Preference Center
303303
## Privacy Preference Center
@@ -313,7 +313,7 @@ Resources
313313
#### Your Privacy
314314
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
315315
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
316-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
316+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
317317
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
318318
**Timestamp:** --
319319
#### Strictly Necessary Cookies

gitlab_api/skills/gitlab-api-docs/reference/api_admin_token.md renamed to gitlab_api/skills/gitlab-api-docs/reference/admin_token.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ shell
271271
```
272272
curl --request POST \
273273
--url "https://gitlab.example.com/api/v4/admin/token" \
274-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
274+
--header "PRIVATE-TOKEN: <your_access_token>" \
275275
--header 'Content-Type: application/json' \
276276
--data '{"token": "glpat-<example-token>"}'
277277
```
@@ -351,7 +351,7 @@ shell
351351
```
352352
curl --request DELETE \
353353
--url "https://gitlab.example.com/api/v4/admin/token" \
354-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
354+
--header "PRIVATE-TOKEN: <your_access_token>" \
355355
--header 'Content-Type: application/json' \
356356
--data '{"token": "glpat-<example-token>"}'
357357
```
@@ -402,7 +402,7 @@ Resources
402402
* Cookie Preferences
403403

404404

405-
405+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2Fadmin%2Ftoken%2F&_biz_t=1772174205851&_biz_i=Token%20information%20API%20%7C%20GitLab%20Docs&_biz_n=6&rnd=8134&cdn_o=a&_biz_z=1772174205852)
406406
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
407407
## Privacy Preference Center
408408
## Privacy Preference Center
@@ -418,7 +418,7 @@ Resources
418418
#### Your Privacy
419419
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
420420
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
421-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
421+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
422422
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
423423
**Timestamp:** --
424424
#### Strictly Necessary Cookies

gitlab_api/skills/gitlab-api-docs/reference/administration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Resources
102102
* Cookie Preferences
103103

104104

105-
105+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2F&_biz_t=1772174205429&_biz_i=GitLab%20Docs&_biz_n=2&rnd=190107&cdn_o=a&_biz_z=1772174205623)![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2F&_biz_t=1772174205568&_biz_i=Extend%20with%20GitLab%20%7C%20GitLab%20Docs&_biz_n=3&rnd=145233&cdn_o=a&_biz_z=1772174205624)![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fadministration%2F&_biz_t=1772174205623&_biz_i=Administer%20GitLab%20%7C%20GitLab%20Docs&_biz_n=4&rnd=237183&cdn_o=a&_biz_z=1772174205624)
106106
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
107107
## Privacy Preference Center
108108
## Privacy Preference Center
@@ -118,7 +118,7 @@ Resources
118118
#### Your Privacy
119119
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
120120
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
121-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
121+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
122122
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
123123
**Timestamp:** --
124124
#### Strictly Necessary Cookies

gitlab_api/skills/gitlab-api-docs/reference/api_alert_management_alerts.md renamed to gitlab_api/skills/gitlab-api-docs/reference/alert_management_alerts.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Attribute | Type | Required | Description
226226
Example request:
227227
shell
228228
```
229-
curl --request POST --header "PRIVATE-TOKEN: YOUR_TOKEN" \
229+
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" \
230230
--form 'file=@/path/to/file.png' \
231231
--form 'url=http://example.com' \
232232
--form 'url_text=Example website' \
@@ -259,7 +259,7 @@ Attribute | Type | Required | Description
259259
Example request:
260260
shell
261261
```
262-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" \
262+
curl --header "PRIVATE-TOKEN: <your_access_token>" \
263263
--url "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images"
264264
```
265265

@@ -302,7 +302,7 @@ Attribute | Type | Required | Description
302302
Example request:
303303
shell
304304
```
305-
curl --header "PRIVATE-TOKEN: YOUR_TOKEN" \
305+
curl --header "PRIVATE-TOKEN: <your_access_token>" \
306306
--request PUT --form 'url=http://example.com' \
307307
--form 'url_text=Example website' \
308308
--url "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images/1"
@@ -336,7 +336,7 @@ Example request:
336336
shell
337337
```
338338
curl --request DELETE \
339-
--header "PRIVATE-TOKEN: YOUR_TOKEN" \
339+
--header "PRIVATE-TOKEN: <your_access_token>" \
340340
--url "https://gitlab.example.com/api/v4/projects/5/alert_management_alerts/93/metric_images/1"
341341
```
342342

@@ -392,7 +392,7 @@ Resources
392392
* Cookie Preferences
393393

394394

395-
395+
![](https://cdn.bizible.com/ipv?_biz_r=&_biz_h=800054037&_biz_u=10503924d6784ad3f2d352558587a67a&_biz_l=https%3A%2F%2Fdocs.gitlab.com%2Fapi%2Falert_management_alerts%2F&_biz_t=1772174217167&_biz_i=Alert%20management%20alerts%20API%20%7C%20GitLab%20Docs&_biz_n=12&rnd=813628&cdn_o=a&_biz_z=1772174217168)
396396
![Company Logo](https://cdn.cookielaw.org/logos/aa14a5c8-79e3-442a-8177-464ad850b19d/e46c1d0d-1f66-481f-bc06-5427671431da/253e6fee-c4c0-4b60-bc35-79cdae5dda32/gitlab-logo-100.png)
397397
## Privacy Preference Center
398398
## Privacy Preference Center
@@ -408,7 +408,7 @@ Resources
408408
#### Your Privacy
409409
When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies. This information might be about you, your preferences or your device and is mostly used to make the site work as you expect it to. The information does not usually directly identify you, but it can give you a more personalized web experience. Because we respect your right to privacy, you can choose not to allow some types of cookies. Click on the different category headings to find out more and change our default settings. However, blocking some types of cookies may impact your experience of the site and the services we are able to offer.
410410
[Cookie Policy](https://about.gitlab.com/privacy/cookies/)
411-
**User ID:** d8a8ce5a-8fe2-4380-9852-3ffbac7eb562
411+
**User ID:** 42fad8d5-ed56-4786-8d74-3c72635252d2
412412
_This User ID will be used as a unique identifier while storing and accessing your preferences for future._
413413
**Timestamp:** --
414414
#### Strictly Necessary Cookies

0 commit comments

Comments
 (0)