summaryrefslogtreecommitdiff
path: root/doc/api
Commit message (Collapse)AuthorAgeFilesLines
...
| * | API docs: fix new milestone parametersNihad Abbasov2013-02-201-1/+0
| | |
| * | Fix private flag for projectDmitriy Zaporozhets2013-02-191-3/+3
| | |
* | | API: fixes return codes, documentation updated with status codes, tests addedSebastian Ziebell2013-02-201-26/+92
| | | | | | | | | | | | | | | | | | | | | | | | The users API updated with return codes, e.g. if required parameters are missing a `400 Bad Request` error is returned instead of `404`. Fixes return codes of functions, e.g. deletion of a ssh key is an idempotent function now. The API documentation is updated to reflect the current status of the API. Descriptions are more detailed and complete, infos to return values are added to all functions.
* | | API documentation expanded with status code informationSebastian Ziebell2013-02-182-0/+18
| | | | | | | | | | | | Information to return codes added to projects and users documentation.
* | | API documentation extended with snippets, tags and commitsSebastian Ziebell2013-02-151-1/+153
| | | | | | | | | | | | | | | | | | Documentation is updated with information how to handle snippets or how to access tags and commits. Nearly all project specific functions are now described in the documentation. A few previous entries have been updated with status codes, e.g. `401 Unauthorized`.
* | | API documentation extended with infos to project branchesSebastian Ziebell2013-02-151-0/+77
| | |
* | | API projects documentation grouped into sections & updated with status codesSebastian Ziebell2013-02-141-34/+117
| | | | | | | | | | | | | | | | | | | | | | | | The API documentation for projects now is structured into major sections that describe the different aspects when dealing with projects, e.g. hooks, branches, team members etc. All described methods now contain a list of possible status codes the method can return. A few methods have extra sample JSON responses and a description if a method is idempotent. Idempotent methods can be called multiple times while returning the same status code.
* | | Merge branch 'master' into fixes/apiSebastian Ziebell2013-02-131-0/+3
|\ \ \ | |/ /
| * | Changed function to `not_found`.Sebastian Ziebell2013-02-091-0/+3
| | | | | | | | | | | | Instead of using funtion `error!` the function `not_found!` is used to return 404 error. Adjusted documentation accordingly.
* | | Merge branch 'master' into fixes/apiSebastian Ziebell2013-02-086-3/+194
|\ \ \ | |/ /
| * | Add docs/tests for groups apiChristian Simon2013-02-012-0/+46
| | |
| * | Merge pull request #2839 from m4tthumphrey/protected-branches-apiDmitriy Zaporozhets2013-01-311-3/+86
| |\ \ | | | | | | | | Added methods to protect and unprotect branches in from the API
| | * | Added methods to protect and unprotect branchesMatt Humphrey2013-01-311-3/+86
| | | |
| * | | Merge branch 'extend_user_api' of https://github.com/bladealslayer/gitlabhq ↵Dmitriy Zaporozhets2013-01-311-0/+43
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | into bladealslayer-extend_user_api Conflicts: spec/requests/api/users_spec.rb
| | * | | Extended users API to support updating and deleting users.Boyan Tabakov2012-12-181-0/+43
| | | | | | | | | | | | | | | | | | | | Also added tests.
| * | | | add path and path_with_namespace to api project entityDmitriy Zaporozhets2013-01-311-0/+6
| | | | |
| * | | | missing doc for apiDmitriy Zaporozhets2013-01-311-0/+13
| | |/ / | |/| |
* | | | A few fixes in documentation to notes, updates infos on status codesSebastian Ziebell2013-02-061-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | A few fixes in the notes URI pattern (`notes` instead of `:notes`), also updated the information to status codes. If `body` attribute is missing from a POST request a status code 400 (Bad request) is returned. This reflects the code changes from the previous commit.
* | | | update api documentation for delete team memberFelix Gilcher2013-02-011-2/+5
|/ / / | | | | | | | | | correctly describes the new behavior
* | | remove incorrect information about the api versionFelix Gilcher2013-01-281-1/+1
| |/ |/| | | | | | | The API version is currently not equal to the gitlab major version number. Gitlab 4.1  still uses API version 3. Point to the lib/api.rb file instead which contains the autoritative information.
* | Remove path parameter from projects APIRiyad Preukschas2012-12-221-4/+0
| |
* | Up API version to v3Riyad Preukschas2012-12-211-1/+1
| |
* | Remove all references tp the project code parameter from the APIRiyad Preukschas2012-12-217-44/+44
| |
* | Remove the code parameter from the projects APIRiyad Preukschas2012-12-211-4/+0
| |
* | refactoring gfm_autocompleteValeriy Sizov2012-12-201-0/+1
|/
* Merge pull request #2286 from nuecho/fix-doc-api-issuesDmitriy Zaporozhets2012-12-151-14/+0
|\ | | | | Removed delete section in issues API documentation
| * Removed delete section in issues API documentationMatthieu Vachon2012-12-141-14/+0
| |
* | Add username to User and UserBasic entities in API and in examples in doc.Cyril2012-12-127-0/+26
|/
* Validates presence of User#nameCyril2012-12-121-1/+1
| | | | | | | | | The 2 reasons are : - creation of user fail if name is empty : in after_save, it tries to create a namespace with namespace.name = user.name and namespece validates presence Namespace#name - in the web app links to team members are broken with empty User#name because they are of the form <a href'...'> user.name </a>
* API: get a single wall noteNihad Abbasov2012-12-011-0/+13
|
* update contents of API READMENihad Abbasov2012-12-011-1/+2
|
* API: ability to create a wall noteNihad Abbasov2012-11-291-0/+16
|
* API: don't expose 'updated_at' for notesNihad Abbasov2012-11-291-2/+1
|
* add docs for notes APINihad Abbasov2012-11-291-0/+121
|
* Merge pull request #1735 from NARKOZ/apiValeriy Sizov2012-11-071-4/+2
|\ | | | | API fixes
| * update API docsNihad Abbasov2012-10-191-4/+2
| |
* | API: tests for merge_requestsValeriy Sizov2012-10-251-5/+5
| |
* | API: help page and commentValeriy Sizov2012-10-221-0/+194
|/
* Update doc/api/projects.md for hooks APIjozefvaclavik2012-10-121-2/+34
| | | Added documentation for getting project hook and editing project hook.
* API: add project snippets listingNihad Abbasov2012-10-081-1/+9
|
* API: fix documentationValeriy Sizov2012-10-021-1/+1
|
* fix TYPOValeriy Sizov2012-10-021-2/+2
|
* #1585 Api for user creation: create helpValeriy Sizov2012-10-021-0/+21
|
* fix links in API READMENihad Abbasov2012-09-211-1/+1
|
* separate project repositories API docsNihad Abbasov2012-09-212-166/+166
|
* API: SSH keys belong to user entityNihad Abbasov2012-09-212-79/+78
|
* API: commits belong to project repositoryNihad Abbasov2012-09-212-38/+34
|
* Merge pull request #1521 from NARKOZ/apiDmitriy Zaporozhets2012-09-211-20/+43
|\ | | | | API for project team members
| * add API for project team membersNihad Abbasov2012-09-211-20/+43
| |
* | APi for commits. Better api docsDmitriy Zaporozhets2012-09-211-0/+38
|/