summaryrefslogtreecommitdiff
path: root/doc/api
Commit message (Collapse)AuthorAgeFilesLines
* Update CE files for GSD projects filterVictor Zagorodny2019-08-281-0/+1
| | | | | | | | | 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
* Fix markdown in various docsMarcel Amirault2019-08-281-1/+0
| | | | | | Clean up issues that may cause the docs-lint test to fail, such as trailing whitespace, no EOF newline, blockquotes, etc
* Remove trailing whitespace from project snippets API docssh-fix-docs-lint-snippetsStan Hu2019-08-271-2/+2
| | | | Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/66677
* Add example requests for snippets APIRainer Kern2019-08-271-0/+58
|
* Merge branch '57657-promote-label-to-group-label-via-api-endpoint' into 'master'Sean McGivern2019-08-271-0/+34
|\ | | | | | | | | | | | | Promote Label to Group Label via API endpoint Closes #57657 See merge request gitlab-org/gitlab-ce!25218
| * Update docs targeting 12.3Robert Schilling2019-08-261-1/+1
| |
| * Move promote to put and add more specsRobert Schilling2019-08-261-2/+2
| |
| * Add docs and first specsRobert Schilling2019-08-261-0/+34
| |
* | Update doc/api/events.mdAlexis Sánchez2019-08-271-6/+6
| |
* | Add backticks and remove square bracketsMarcel Amirault2019-08-261-4/+4
| | | | | | | | | | Square and Angle bracket use causes kramdown warnings, so changed or enclosed in backticks as needed
* | Fix N+1 Gitaly calls in /api/v4/projects/:id/issuessh-fix-nplusone-issuesStan Hu2019-08-231-1/+0
|/ | | | | | | | | | | | | | | | | | | | | | | 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
* Add label_id parameter to label API for PUT and DELETEPatrick Derichs2019-08-231-3/+5
| | | | Add specs for new parameter and updated documentation as well.
* Merge branch '57402-upate-issues-list-sort-options-ce' into 'master'Jan Provaznik2019-08-231-3/+3
|\ | | | | | | | | CE: Update sort options for issues list See merge request gitlab-org/gitlab-ce!31849
| * Update sort options for issues list57402-upate-issues-list-sort-options-ceAlexandru Croitor2019-08-231-3/+3
| | | | | | | | | | | | | | | | | | | | 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
* | Update dependencies api docTetiana Chupryna2019-08-231-5/+11
| |
* | Update capitalization in admin, api, othersMarcel Amirault2019-08-237-12/+12
|/ | | | | Update capitalization in /administration, /api, /ci and /customization
* Expose namespace storage statistics with GraphQLAlessio Caiazza2019-08-221-0/+12
| | | | | | | | | | | | | | | | | | | 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 } } }
* Add `searchBy` helper & `SidebarItemEpicsSelect`ce-6878-add-epic-select-dropdownKushal Pandya2019-08-221-0/+8
| | | | | - Adds `searchBy` util in common utils - Adds placeholder `SidebarItemEpicsSelect`
* Update docs to pass new markdownlintMarcel Amirault2019-08-226-24/+25
| | | | | Deletes extra spaces and line, makes lists consistent, and fixes links.
* Merge branch ↵Kushal Pandya2019-08-221-0/+1
|\ | | | | | | | | | | | | '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
| * Add a skip_users filter to the project users APINick Thomas2019-08-191-0/+1
| | | | | | | | | | | | 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.
* | Merge branch ↵Achilleas Pipinellis2019-08-211-1/+1
|\ \ | | | | | | | | | | | | | | | | | | '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
| * | Update api_resources docs - remove incorrect group vulnerabilities referenceupdate-api-docs-remove-incorrect-group-vulnerabilities-referenceLucas Charles2019-08-191-1/+1
| | |
* | | Merge branch 'docs-fix-soft-deletion' into 'master'Evan Read2019-08-214-4/+4
|\ \ \ | | | | | | | | | | | | | | | | Fix outdated references to soft deletion See merge request gitlab-org/gitlab-ce!31982
| * | | Fix outdated references to soft deletiondocs-fix-soft-deletionMarkus Koller2019-08-194-4/+4
| |/ / | | | | | | | | | | | | | | | 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.
* | | Merge branch 'sh-fix-issues-api-gitaly-nplusone' into 'master'Sean McGivern2019-08-201-2/+0
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Fix Gitaly N+1 calls with listing issues/MRs via API Closes #66202 See merge request gitlab-org/gitlab-ce!31938
| * | Fix Gitaly N+1 calls with listing issues/MRs via APIsh-fix-issues-api-gitaly-nplusoneStan Hu2019-08-171-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Doc: add project approval rule endpointsMark Chao2019-08-191-56/+238
| | |
* | | add GitLab CI job token API authentication sectionBen Bodenmiller2019-08-181-1/+10
|/ /
* | Update/expand docs for the Dependency ListMark Florian2019-08-151-1/+1
| | | | | | | | | | | | | | | | | | 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
* | Migrates Snowplow backend from EE to CEJeremy Jackson2019-08-141-0/+4
| | | | | | | | | | This introduces several changes, but these are all just ported from the EE project.
* | Fix Geo Node API documentationce-10586-add-flag-to-object-storage-migrationGabriel Mazetto2019-08-131-20/+55
| | | | | | | | Included missing fields, removed non existinting ones, improved examples
* | Merge branch 'ce-docker_image_replication-ui-3-3' into 'master'Douglas Barbosa Alexandre2019-08-131-0/+6
|\ \ | | | | | | | | | | | | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14599 See merge request gitlab-org/gitlab-ce!31573
| * | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14599Valery Sizov2019-08-131-0/+6
| | | | | | | | | | | | Part of Docker Regsitry Replication feature for Geo
* | | Merge branch 'patch-73' into 'master'Marcia Ramos2019-08-131-5/+5
|\ \ \ | |/ / |/| | | | | | | | Update links.md to give more consistency with the rest of the documentation See merge request gitlab-org/gitlab-ce!31693
| * | Update links.md to give more consistency with the rest of the documentationAlexis Sánchez2019-08-101-5/+5
| | |
* | | Make section headings consistentEvan Read2019-08-121-2/+2
|/ /
* | Merge branch 'ce-docker_image_replication_node_status' into 'master'Douglas Barbosa Alexandre2019-08-101-0/+12
|\ \ | |/ |/| | | | | Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14943 See merge request gitlab-org/gitlab-ce!31406
| * Backport of https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/14943ce-docker_image_replication_node_statusValery Sizov2019-08-071-0/+12
| | | | | | | | Docker Registry Replication
* | Merge branch '39217-remove-kubernetes-service-integration' into 'master'James Lopez2019-08-091-38/+0
|\ \ | | | | | | | | | | | | Remove KubernetesService integration See merge request gitlab-org/gitlab-ce!31365
| * | Final removal of KubernetesService39217-remove-kubernetes-service-integrationTiger2019-08-081-38/+0
| |/ | | | | | | | | | | Creating new records has been disabled, and all existing records been migrated to clusters as of https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/28534
* | Merge branch 'speed-up-labels-api' into 'master'Rémy Coutable2019-08-092-8/+10
|\ \ | | | | | | | | | | | | Remove label issue and MR counts from default API responses See merge request gitlab-org/gitlab-ce!31543
| * | Remove label issue and MR counts from default API responsesspeed-up-labels-apiSean McGivern2019-08-082-8/+10
| | | | | | | | | | | | | | | | | | | | | These counts significantly increase the load time for these requests. Users can now opt in to receiving the counts by setting `with_counts=true` in requests. This is a breaking change, but hopefully a fairly minor one.
* | | Bring scoped environment variables to coreHordur Freyr Yngvason2019-08-081-2/+2
| | | | | | | | | | | | As decided in https://gitlab.com/gitlab-org/gitlab-ce/issues/53593
* | | Merge deploy keys example to deploy keys API docsAchilleas Pipinellis2019-08-082-28/+33
| | | | | | | | | | | | No reason to keep them separate.
* | | Merge branch '20137-starrers' into 'master'Stan Hu2019-08-081-0/+233
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add possibilty to view starrers ("stargazers") of a repository & any user's starred repositories Closes #20137 See merge request gitlab-org/gitlab-ce!24690
| * | | Address reviewer commentsCamil Staps2019-08-071-17/+23
| | | |
| * | | Expose time since starring on project/:id/starrers API endpoint; exclude ↵Camil Staps2019-08-071-14/+20
| | | | | | | | | | | | | | | | private profiles here as well
| * | | Add documentation and changelog for !24690Camil Staps2019-08-071-0/+221
| | |/ | |/|
* | | Merge branch 'tpresa-expose-reject-unsigned-commits' into 'master'Ash McKenzie2019-08-081-3/+7
|\ \ \ | | | | | | | | | | | | | | | | Add docs for reject_unsigned_commits (premium only) See merge request gitlab-org/gitlab-ce!31113