summaryrefslogtreecommitdiff
path: root/doc/api/projects.md
Commit message (Collapse)AuthorAgeFilesLines
* update API doc with +API (h1 heading)Marcia Ramos2017-05-101-1/+1
|
* Expose project statistics on single requests via the APIMark Fletcher2017-05-031-1/+9
| | | | | | + The statistics parameter was already accepted * This commit ensure that it is respected for GET /projects/:id endpoint + Add documentation of the parameter and update the example response for stats
* Update Projects API documentation to include statistics parameterMark Fletcher2017-05-011-2/+17
| | | | * Only supported for the GET /projects endpoint
* docs(api): add curl arguments for file uploadsiemens/gitlab-ce-uploads-apiMarion Deveaud2017-04-211-2/+13
|
* Fix wrong copy edits for URL-encoded substitutions in API docsalkuzad/gitlab-ce-namespaces_encoding_docsAchilleas Pipinellis2017-04-101-18/+18
|
* Mention URL path encoding to all API docsAchilleas Pipinellis2017-04-081-7/+7
|
* Add information about namespace encoding to API docsDawid Goslawski2017-04-081-26/+26
|
* Update description about GET /projects endpointToon Claes2017-03-071-1/+1
| | | | | It returns all projects visible for the authenticated user, not just the project they are member of.
* Rename build to job in the docsZ.J. van de Weg2017-03-061-26/+26
|
* Rename query parameter to `membership`28865-filter-by-authorized-projects-in-v4Toon Claes2017-03-031-2/+2
| | | | The query parameter `membership` should be more self-explaining.
* Add filter param for authorized projects for current_user for V4Oswaldo Ferreira2017-03-031-0/+1
|
* Expose Project's & ProjectSnippet's VisibilityLevel as StringToon Claes2017-03-021-21/+14
| | | | | | | | | | Instead of exposing the VisibilityLevel as Integer, expose it as String `visibility` for Project and ProjectSnippet. Filter queries also accept the `visibility` as String instead of `visibility_level` as Integer. Also remove the `public` boolean.
* Merge branch 'api-v4-doc' into 'master' Douwe Maan2017-03-011-5/+5
|\ | | | | | | | | Use v4 endpoint in API docs See merge request !9631
| * Use v4 endpoint in API docsapi-v4-docRobert Schilling2017-03-011-5/+5
| |
* | Update occurrences of MWBS to MWPSfix/mwbs-to-mwpsJames Lopez2017-03-011-10/+10
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rename column in the database Rename fields related to import/export feature Rename API endpoints Rename documentation links Rename the rest of occurrences in the code Replace the images that contain the words "build succeeds" and docs referencing to them Make sure pipeline is green and nothing is missing. updated doc images renamed only_allow_merge_if_build_succeeds in projects and fixed references more updates fix some spec failures fix rubocop offences fix v3 api spec fix MR specs fixed issues with partials fix MR spec fix alignment add missing v3 to v4 doc wip - refactor v3 endpoints fix specs fix a few typos fix project specs copy entities fully to V3 fix entity error more fixes fix failing specs fixed missing entities in V3 API remove comment updated code based on feedback typo fix spec
* API project create: Make name or path requiredJarka Kadlecova2017-02-271-2/+2
|
* Merge branch 'master' into 'api-notes-entity-fields'api-notes-entity-fieldsRobert Schilling2017-02-221-0/+14
|\ | | | | | | # Conflicts: # doc/api/v3_to_v4.md
| * Add housekeeping endpoint for Projects APIMark Fletcher2017-02-221-0/+14
| |
* | Remove deprecated `upvotes` and `downvotes` from the notes APIRobert Schilling2017-02-221-2/+0
|/
* API: Moved `DELETE /projects/:id/star` to `POST /projects/:id/unstar`api-star-restfulRobert Schilling2017-02-201-3/+3
|
* Merge branch 'master' into 'dz-nested-groups-improvements-3'Dmitriy Zaporozhets2017-02-141-188/+4
|\ | | | | | | # Conflicts: # doc/api/projects.md
| * API: Consolidate /projects endpointToon Claes2017-02-141-184/+2
| | | | | | | | | | | | | | | | | | | | | | It consolidates these endpoints: - /projects - /projects/owned - /projects/visible - /projects/starred - /projects/all Into the /projects endpoint using query parameters.
| * Move /projects/fork/:id to /projects/:id/fork14492-change-fork-endpointOswaldo Ferreira2017-02-131-1/+1
| |
* | Use Namespace#full_path instead of Namespace#pathDmitriy Zaporozhets2017-02-141-9/+18
|/ | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Update API docs for new namespace formatMarkus Koller2017-02-081-36/+9
| | | | | | | Follow-up to d05dd81b which changed the nested namespaces in projects to use API::Entities::Namespace instead of exposing all fields. Fixes #27730
* API: remove `public` param for projectsToon Claes2017-02-071-3/+0
| | | | | | | | | The create and edit actions for projects had these parameters: - `public` (optional) - if true same as setting `visibility_level = 20` - `visibility_level` (optional) Remove the `public` parameter to avoid contradiction.
* Add more storage statisticsMarkus Koller2016-12-211-0/+4
| | | | | | | | | | | | | This adds counters for build artifacts and LFS objects, and moves the preexisting repository_size and commit_count from the projects table into a new project_statistics table. The counters are displayed in the administration area for projects and groups, and also available through the API for admins (on */all) and normal users (on */owned) The statistics are updated through ProjectCacheWorker, which can now do more granular updates with the new :statistics argument.
* Remove duplicated parameter description [ci skip]fix-api-docsRobert Schilling2016-12-151-1/+0
|
* Document the public Project API and document `GET /projects/:id/users`document-public-project-apiRémy Coutable2016-12-021-4/+44
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Grapify the projects APIgrapify-projects-apiRobert Schilling2016-11-281-0/+1
|
* Merge branch 'issue-24534' into 'master' Rémy Coutable2016-11-251-16/+3
|\ | | | | | | | | | | | | Remove unnecessary sentences for return codes in the API documentation Closes #24534 See merge request !7511
| * Remove unnecessary sentences for status codes in the API documentationLuis Alonso Chavez Armendariz2016-11-241-16/+3
| |
* | You can only assign default_branch when editing a project or when creating a ↵Robert Schilling2016-11-241-1/+1
| | | | | | | | | | | | project for a specified user [ci skip] You can only assign default_branch when editing a project [ci skip]
* | Add default_branch attr to Project API payload in docs.update-project-api-docRuben Davila2016-11-231-0/+2
| |
* | API: Add endpoint to delete a group shareapi-delete-group-shareRobert Schilling2016-11-231-0/+19
|/
* Correct curl examples for archive and unarchive project APIRobert Speicher2016-11-181-2/+2
| | | | [ci skip]
* Add setting to only allow merge requests to be merged when all discussions ↵Rodolfo Santos2016-11-041-0/+10
| | | | | | are resolved Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch 'gpocentek/gitlab-ce-api-webhook-token' into 'master' Rémy Coutable2016-11-021-0/+2
|\ | | | | | | | | | | | | This MR adds support for the `token` attribute in the project hook API. Feature requested on a dependant project: https://github.com/gpocentek/python-gitlab/issues/170 See merge request !7220
| * Ensure hook tokens are write-only in the APIgpocentek/gitlab-ce-api-webhook-tokenSean McGivern2016-11-011-2/+2
| |
| * Add support for token attr in project hooks APIGauvain Pocentek2016-11-011-0/+2
| | | | | | | | | | The UI allows to define a token to validate payload on the target URL, this patch adds the feature to the API.
* | Fix project visibility level linkAndrea Scarpino2016-10-311-3/+3
|/
* Remove pagination description from individual docTakuya Noguchi2016-10-201-2/+0
|
* Fix a broken table in Project API docTakuya Noguchi2016-10-201-4/+4
|
* Remove /u/ prefix from user pages in documentationDmitriy Zaporozhets2016-10-131-5/+5
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Addresses Robert's feedbackRémy Coutable2016-10-111-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Make projects API docs match parameter styleSean McGivern2016-10-071-140/+196
|
* Update API docs and specs for /projects/visibleSean McGivern2016-10-041-1/+3
|
* api: add /projects/visible API endpointBen Boeckel2016-10-041-0/+129
| | | | FIxes #19361, #3119.
* docs: clarify /projects endpoint descriptionBen Boeckel2016-10-041-1/+1
|
* Expose project share expiration_date field on APIissue_22382Felipe Artur2016-09-281-0/+1
|