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/api
AgeCommit message (Collapse)Author
2019-08-29Settings API: External authentication moved to coreMathieu Parent
See #57131.
2019-08-29Settings API: Remove sentry settingsMathieu Parent
See !28447
2019-08-29Settings API: Document undocumented settingsMathieu Parent
2019-08-29Settings API: Document the missing import_sourcesMathieu Parent
2019-08-29Settings API: Sort settingsMathieu Parent
2019-08-28Merge branch 'docs-nelbacha-improve-grammar-and-code' into 'master'Tom Atkins
Improve grammar and correct syntax in curl example See merge request gitlab-org/gitlab-ce!32163
2019-08-28Update CE files for GSD projects filterVictor Zagorodny
A new param with_security_reports was added to GET /groups/:id/projects API and the code to support this logic in GroupProjectsFinder and Project model. Also, a DB index was added to ci_job_artifacts table to speed up the search of security reports artifacts for projects
2019-08-28Fix markdown in various docsMarcel Amirault
Clean up issues that may cause the docs-lint test to fail, such as trailing whitespace, no EOF newline, blockquotes, etc
2019-08-27Revert "Merge branch 'nik-api-snippets-fix' into 'master'"Stan Hu
This reverts merge request !28571
2019-08-27Remove trailing whitespace from project snippets API docsStan Hu
Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66677
2019-08-27Add example requests for snippets APIRainer Kern
2019-08-27Merge branch '57657-promote-label-to-group-label-via-api-endpoint' into 'master'Sean McGivern
Promote Label to Group Label via API endpoint Closes #57657 See merge request gitlab-org/gitlab-ce!25218
2019-08-27Update doc/api/events.mdAlexis Sánchez
2019-08-26Add backticks and remove square bracketsMarcel Amirault
Square and Angle bracket use causes kramdown warnings, so changed or enclosed in backticks as needed
2019-08-26Update docs targeting 12.3Robert Schilling
2019-08-26Move promote to put and add more specsRobert Schilling
2019-08-26Add docs and first specsRobert Schilling
2019-08-24Add support for using a Camo proxy serverBrett Walker
User images and videos will get proxied through the Camo server in order to keep malicious sites from collecting the IP address of users.
2019-08-24Fix N+1 Gitaly calls in /api/v4/projects/:id/issuesStan Hu
This is a follow-up from https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/31938. In GitLab 9.0, https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9661 removed the `subscribed` flag from the API when the user requested a list of issues or merge requests since calculating this value triggers extensive Markdown processing. In GitLab 12.0 via a4fbf39e, we accidentally reintroduced this performance regression by changing `IssueBasic` to `Issue` in `entities.rb`. This showed up as a Gitaly N+1 issue since the Markdown processing would attempt to extract a commit if it detected a regex that matched a commit. We restore the prior behavior by once again removing the `subscribed` flag for the bulk list of issues and merge requests and add a test to ensure they aren't reintroduced. Relates to https://gitlab.com/gitlab-org/gitlab-ce/issues/66202
2019-08-23Improve grammar and correct syntax in curl exampleNourdin el Bacha
2019-08-23Add label_id parameter to label API for PUT and DELETEPatrick Derichs
Add specs for new parameter and updated documentation as well.
2019-08-23Merge branch '57402-upate-issues-list-sort-options-ce' into 'master'Jan Provaznik
CE: Update sort options for issues list See merge request gitlab-org/gitlab-ce!31849
2019-08-23Update dependencies api docTetiana Chupryna
2019-08-23Update capitalization in admin, api, othersMarcel Amirault
Update capitalization in /administration, /api, /ci and /customization
2019-08-23Update sort options for issues listAlexandru Croitor
Increase sort options for issues list from updated_at and create_at, to include more options close to what is required in actual issue list UI. This helps us to use REST API for issues list with sorting capabilities https://gitlab.com/gitlab-org/gitlab-ce/issues/57402
2019-08-23Expose namespace storage statistics with GraphQLAlessio Caiazza
Root namespaces have storage statistics. This commit allows namespace owners to get those stats via GraphQL queries like the following one { namespace(fullPath: "a_namespace_path") { rootStorageStatistics { storageSize repositorySize lfsObjectsSize buildArtifactsSize packagesSize wikiSize } } }
2019-08-22Add `searchBy` helper & `SidebarItemEpicsSelect`Kushal Pandya
- Adds `searchBy` util in common utils - Adds placeholder `SidebarItemEpicsSelect`
2019-08-22Update docs to pass new markdownlintMarcel Amirault
Deletes extra spaces and line, makes lists consistent, and fixes links.
2019-08-22Merge branch ↵Kushal Pandya
'ee-2502-refactor-ee-app-assets-javascripts-approvals-components-approvers_select-vue-to-remove-approverusers' into 'master' Add a new method to `Api.js`: `projectUsers` See merge request gitlab-org/gitlab-ce!31801
2019-08-22Limit the size of issuable description and commentsAlexandru Croitor
Limiting the size of issuable description and comments to 1_000_000, which is close to ~1MB of ASCII characters, which represents 99.9% of all descriptions and comments we have in DB at the moment. This should help prevent DoS attacks when comments contain refference strings. Also this change updates regexp matching the namespaces paths by limiting the namespaces paths to Namespace::NUMBER_OF_ANCESTORS_ALLOWED, as we allow 20 levels deep groups. see https://gitlab.com/gitlab-org/gitlab-ce/issues/61974#note_191274234
2019-08-21Merge branch ↵Achilleas Pipinellis
'update-api-docs-remove-incorrect-group-vulnerabilities-reference' into 'master' Update api_resources docs - remove incorrect group vulnerabilities reference See merge request gitlab-org/gitlab-ce!31979
2019-08-21Merge branch 'docs-fix-soft-deletion' into 'master'Evan Read
Fix outdated references to soft deletion See merge request gitlab-org/gitlab-ce!31982
2019-08-20Merge branch 'sh-fix-issues-api-gitaly-nplusone' into 'master'Sean McGivern
Fix Gitaly N+1 calls with listing issues/MRs via API Closes #66202 See merge request gitlab-org/gitlab-ce!31938
2019-08-19Fix outdated references to soft deletionMarkus Koller
We stopped using soft deletion for issues and merge requests in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/15789, and for boards we apparently never used it.
2019-08-19Update api_resources docs - remove incorrect group vulnerabilities referenceLucas Charles
2019-08-19Doc: add project approval rule endpointsMark Chao
2019-08-19Add a skip_users filter to the project users APINick Thomas
This functionality is available in the /autocomplete users pseudo-API. We're attempting to replace that with the canonical API, so it needs support for this parameter too.
2019-08-19add GitLab CI job token API authentication sectionBen Bodenmiller
2019-08-18Fix Gitaly N+1 calls with listing issues/MRs via APIStan Hu
In GitLab 9.0, https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9661 removed the `subscribed` flag from the API when the user requested a list of issues or merge requests since calculating this value triggers extensive Markdown processing. In GitLab 12.0 via a4fbf39e, we accidentally reintroduced this performance regression by changing `IssueBasic` to `Issue` in `entities.rb`. This showed up as a Gitaly N+1 issue since the Markdown processing would attempt to extract a commit if it detected a regex that matched a commit. We restore the prior behavior by once again removing the `subscribed` flag for the bulk list of issues and merge requests and add a test to ensure they aren't reintroduced. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66202
2019-08-15Update/expand docs for the Dependency ListMark Florian
These changes align the docs with the features introduced in [1]. See also the [issue tracking the documentation changes][2]. [1]: https://gitlab.com/gitlab-org/gitlab-ee/issues/10077 [2]: https://gitlab.com/gitlab-org/gitlab-ee/issues/12986
2019-08-14Migrates Snowplow backend from EE to CEJeremy Jackson
This introduces several changes, but these are all just ported from the EE project.
2019-08-13Fix Geo Node API documentationGabriel Mazetto
Included missing fields, removed non existinting ones, improved examples
2019-08-13Merge branch 'ce-docker_image_replication-ui-3-3' into 'master'Douglas Barbosa Alexandre
Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14599 See merge request gitlab-org/gitlab-ce!31573
2019-08-13Merge branch 'patch-73' into 'master'Marcia Ramos
Update links.md to give more consistency with the rest of the documentation See merge request gitlab-org/gitlab-ce!31693
2019-08-13Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14599Valery Sizov
Part of Docker Regsitry Replication feature for Geo
2019-08-12Make section headings consistentEvan Read
2019-08-10Update links.md to give more consistency with the rest of the documentationAlexis Sánchez
2019-08-10Merge branch 'ce-docker_image_replication_node_status' into 'master'Douglas Barbosa Alexandre
Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14943 See merge request gitlab-org/gitlab-ce!31406
2019-08-09Merge branch '39217-remove-kubernetes-service-integration' into 'master'James Lopez
Remove KubernetesService integration See merge request gitlab-org/gitlab-ce!31365
2019-08-09Merge branch 'speed-up-labels-api' into 'master'Rémy Coutable
Remove label issue and MR counts from default API responses See merge request gitlab-org/gitlab-ce!31543