summaryrefslogtreecommitdiff
path: root/doc/api
Commit message (Collapse)AuthorAgeFilesLines
* Add Microsoft Teams Service API docsMark Fletcher2017-12-221-0/+34
|
* Add Prometheus Service API docsMark Fletcher2017-12-221-0/+34
|
* Add Bugzilla Service API docsMark Fletcher2017-12-221-0/+38
|
* Update parameter formatting across Service API docsMark Fletcher2017-12-221-62/+102
|
* Support new chat notifications parameters in Services APIMark Fletcher2017-12-221-8/+54
| | | | | + Add support for the new separate channel and events settings * Dry up chat notifications in the service properties definitions
* Merge branch '38356-add-last_commit_sha-to-the-commit-api' into 'master'Douwe Maan2017-12-212-0/+2
|\ | | | | | | | | | | | | Add new last_commit_id param for create commit endpoint Closes #38356 See merge request gitlab-org/gitlab-ce!15922
| * Updates from last code review:38356-add-last_commit_sha-to-the-commit-apiRubén Dávila2017-12-202-1/+2
| | | | | | | | | | | | - Apply some refactoring for code reuse - Add file status validation for Files::DeleteService - Write additional specs
| * Check if file has been modified for each action provided.Rubén Dávila2017-12-201-0/+1
| | | | | | | | | | | | When commiting multiple files we're now checking if any of those files has been modified by another commit and we're rejecting the new commit in this case.
* | Add optional `search` param for Merge Requests APIMark Fletcher2017-12-201-0/+2
|/
* Merge branch 'patch-29' into 'master'Sean McGivern2017-12-151-9/+13
|\ | | | | | | | | fix formatting of parameters for new group and transfer project to group See merge request gitlab-org/gitlab-ce!15822
| * Fix type descriptionMichael Lihs2017-12-141-1/+1
| |
| * fix formatting of parameters for new group and transfer project to groupMichael Lihs2017-12-081-9/+13
| |
* | sorting for tags apihaseeb2017-12-141-1/+5
| |
* | Merge branch '13695-order-contributors-in-api' into 'master'Rémy Coutable2017-12-131-0/+2
|\ \ | | | | | | | | | | | | | | | | | | Adds ordering to projects contributors in API Closes #13695 See merge request gitlab-org/gitlab-ce!15469
| * | Adds ordering to projects contributors in APIJacopo2017-12-131-0/+2
| |/ | | | | | | | | | | | | Allows ordering in GET api/v4/projects/:project_id/repository/contributors through `order_by` and `sort` params. The available `order_by` options are: name|email|commits. The available `sort` options are: asc|desc.
* | Merge branch 'docs/api-nil' into 'master'Marcia Ramos2017-12-132-7/+7
|\ \ | |/ |/| | | | | Document how to remove assignees, labels, and milestones form the issue and MRs API See merge request gitlab-org/gitlab-ce!15664
| * [API] Document how to unassign labels, milestones, and assigneesdocs/api-nilAchilleas Pipinellis2017-12-012-7/+7
| |
* | Move the circuitbreaker check out in a separate processbvl-circuitbreaker-processBob Van Landuyt2017-12-081-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
* | CE backport of ProtectedBranches API changesJames Edwards-Jones2017-12-071-1/+1
|/ | | | | In EE we now allow individual users/groups to be set on POST, which required some refactoring. See https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/3516
* support ordering of project notes in notes apihaseeb2017-11-291-12/+21
|
* Merge branch 'tm/feature/list-runners-jobs-api' into 'master'Kamil Trzciński2017-11-281-0/+85
|\ | | | | | | | | | | | | Add new API endpoint - list jobs of a specified runner Closes #39699 See merge request gitlab-org/gitlab-ce!15432
| * Update documentationTomasz Maczukin2017-11-281-11/+36
| |
| * Add information about projectTomasz Maczukin2017-11-281-0/+9
| |
| * Add new API endpoint - list jobs of a specified runnerTomasz Maczukin2017-11-281-0/+51
| |
* | Merge branch 'tm/feature/namespace-by-id-api' into 'master'Kamil Trzciński2017-11-281-0/+52
|\ \ | |/ |/| | | | | | | | | Add new API endpoint - get a namespace by ID Closes #40254 See merge request gitlab-org/gitlab-ce!15442
| * Allow request namespace by ID or pathTomasz Maczukin2017-11-231-1/+21
| |
| * Add new API endpoint - get a namespace by IDTomasz Maczukin2017-11-231-0/+32
| |
* | Merge branch 'jej/fix-protected-branch-validations-ce' into 'master'Rémy Coutable2017-11-241-1/+1
|\ \ | |/ |/| | | | | Fix ProtectedBranch access level validations See merge request gitlab-org/gitlab-ce!15586
| * Fix ProtectedBranch access level validationsJames Edwards-Jones2017-11-241-1/+1
| | | | | | | | | | Before an access_level was required in EE even when an it had been set for a user/group.
* | Allow password authentication to be disabled entirelyMarkus Koller2017-11-231-3/+4
|/
* Skip confirmation user apiDaniel Juarez2017-11-211-0/+1
|
* Clarify wording of protected branch settings for the default branchSean McGivern2017-11-201-1/+1
| | | | | No-one is allowed to force push to a protected branch, or delete it. That's correct in the documentation, but was wrong in the drop-down.
* Merge branch 'docs-link-subgroups-api-mr' into 'master'Achilleas Pipinellis2017-11-181-0/+4
|\ | | | | | | | | | | | | Document when Groups API `/subgroups` endpoint introduced Closes #40247 See merge request gitlab-org/gitlab-ce!15453
| * Document when Groups API `/subgroups` endpoint introducedMark Fletcher2017-11-171-0/+4
| |
* | Fix Typo in environment create definitionLee Matos2017-11-151-1/+1
| |
* | Add administrative endpoint to list all pages domainsTravis Miller2017-11-131-0/+25
| |
* | Update Services API documentation for Kubernetes serviceupdate-services-api-docs-for-kubernetesAthar Hameed2017-11-131-0/+35
|/
* Add /groups/:id/subgroups endpoint to APIWinnie Hellmann2017-11-091-4/+45
|
* Fix acceptance of username for Mattermost service update via APIMark Fletcher2017-11-081-1/+1
|
* Fix issue 39935 : Add created_at and updated_atSébastien Le Gall2017-11-081-0/+6
| | | | Add those fields to the documentation payload about merge requests that were missing but actually present when calling the endpoints
* Merge branch 'feature/custom-attributes-on-projects-and-groups' into 'master'Rémy Coutable2017-11-073-8/+31
|\ | | | | | | | | Support custom attributes on groups and projects See merge request gitlab-org/gitlab-ce!14593
| * Support custom attributes on groupsMarkus Koller2017-11-062-2/+13
| |
| * Support custom attributes on projectsMarkus Koller2017-11-062-8/+20
| |
* | Add changes_count to the merge requests APIadd-changes-count-to-merge-requests-apiSean McGivern2017-11-031-1/+21
|/ | | | | | This returns the `real_size` of the MR's diff, which is a string indicating the number of changes. If the diff overflows after _n_ files, the string will be `$n+`.
* Update documentationdm-remove-private-tokenDouwe Maan2017-11-021-58/+67
|
* Remove private_token from API user entityDouwe Maan2017-11-021-2/+1
|
* Remove Session APIDouwe Maan2017-11-022-56/+0
|
* Merge branch 'patch-29' into 'master'Stan Hu2017-10-311-1/+1
|\ | | | | | | | | Fix example typo. See merge request gitlab-org/gitlab-ce!15104
| * Fix example typo.Lawrence2017-10-311-1/+1
| |
* | Merge branch 'add-packagist-project-service' into 'master'Kamil Trzciński2017-10-311-0/+34
|\ \ | |/ |/| | | | | Add Packagist project service See merge request gitlab-org/gitlab-ce!14493