Dmitriy Zaporozhets
e8b3b92dde
Bring share project with group API from EE
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-03-13 11:52:43 +01:00
Kamil Trzcinski
b4c36130cc
Rename allow_guest_to_access_builds to public_builds
2016-02-04 12:57:46 +01:00
Kamil Trzcinski
6a5a175d9f
Expose allow_guest_to_access_builds in GitLab API
2016-02-04 11:14:12 +01:00
Josh Frye
11797df1af
Change 'public' flag to more robust 'visibility' query.
2016-01-19 09:57:00 -05:00
Josh Frye
6951396dbe
Update all docs for public param
2016-01-19 09:57:00 -05:00
Josh Frye
10669097fa
Add public params to GET /projects api. Closes #3788
2016-01-19 09:57:00 -05:00
Douwe Maan
9664424cab
Merge branch 'ci/api-projects' into 'master'
...
Extend projects API with CI data
Reference #4264
See merge request !2303
2016-01-13 13:32:35 +00:00
Tomasz Maczukin
fc4108b38b
Modify CI features in projects API
2016-01-11 15:27:20 +01:00
Douwe Maan
1886d727f7
Add API project upload endpoint
2016-01-07 13:37:14 +01:00
Tomasz Maczukin
ba9799b42f
Update ./doc/api
2016-01-07 10:39:02 +01:00
Stan Hu
301a30e0ea
Add project permissions to all project API endpoints
...
This standardizes all the project API formats. Also needed to support Huboard.
2015-12-22 10:58:23 -08:00
Zeger-Jan van de Weg
c36821df9f
Api support for requesting starred projects for user
...
Fixes #4112
2015-12-16 21:46:00 +01:00
Dmitriy Zaporozhets
b8570576e8
Merge branch 'add-open-issues-count-to-api' of https://gitlab.com/stanhu/gitlab-ce
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-12-16 16:08:35 +01:00
Stan Hu
3efae53bd7
Add open_issues_count to project API
...
This is needed to support Huboard and a generally useful value.
2015-12-11 23:17:36 -08:00
Kamil Trzcinski
e80e3f5372
Migrate CI::Project to Project
2015-12-11 18:02:09 +01:00
Stan Hu
7b0ac5b6b4
Remove default_branch from project API creation since an empty repository
...
has no branches to start.
Closes #3937
2015-12-08 21:31:22 -08:00
Dmitriy Zaporozhets
3227a5ead2
Extent Event and Note API
...
* add note to Events API
* add author section to Events API
* add noteable_id and noteable_type to Notes API
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-12-04 12:22:50 +01:00
Kamil Trzcinski
6384c757b7
Expose CI enable option in project features
...
- Enable CI by default for all new projects
2015-11-13 10:52:50 +01:00
Ben Boeckel
eb912a534b
api: add enable_ssl_verification to PUT/POST hooks
2015-09-24 12:34:16 -04:00
Ben Boeckel
b07f48d52e
doc: list note_events as a valid parameter for PUT/POST hooks
2015-09-24 12:33:58 -04:00
Ben Boeckel
22db4398c6
api: expose note_events and enable_ssl_verification for hooks
2015-09-24 12:33:11 -04:00
Sytse Sijbrandij
b2246ed175
Make sure webhooks are mentioned at the top level.
2015-07-08 22:27:36 +02:00
Valery Sizov
7471047104
update API doc
2015-05-14 16:30:27 +03:00
Christoph Dreis
d570d0a280
Update API documentation of projects with creator_id
2015-04-10 20:05:01 +02:00
Cristian Medina
f045490568
Modified lib/api/entities.rb to expose Project class tag_list property to the API
...
Updated projects.md to show tag_list field when performing GETs
Updated projects_spec.rb to include check for tag_list key in project list
Added changes to the CHANGELOG
2015-04-03 04:35:12 -04:00
sue445
51abeaa1bc
Expose avatar_url in projects API
...
* Impl Project#avatar_url
* Refactor ApplicationHelper: Use Project#avatar_url
* Update changelog
2015-03-01 10:13:01 +09:00
Dmitriy Zaporozhets
92434b29cc
Extend project web hooks with more data
...
* add git_http_url and git_ssh_url to project web hook
* add visibility_level to project web hook
* add documentation about project visibility_level in API
2015-02-20 10:27:37 -08:00
Dmitriy Zaporozhets
bdfb349ff7
Refactor and improve sorting objects in API for projects, issues and merge requests
2015-02-05 22:00:54 -08:00
Ewan Edwards
ad6c372eee
Fix a number of discovered typos, capitalization of developer and
...
product names, plus a couple of instances of bad Markdown markup.
2015-02-03 15:18:40 -08:00
Mika Mäenpää
7dd5656a5b
Implement edit via API for projects
2015-01-22 16:58:01 +01:00
Marin Jankovski
8689ce1efe
Add search filter option on project api for authorized projects.
2015-01-12 11:08:53 +01:00
Stephan van Leeuwen
6b50721946
Updated projects api to allow ordering
...
Added support for order_by and sort parameters, to sort the projects by the specified values.
Updated projects api documentation including the order_by and sort parameters
2014-12-29 16:36:56 +01:00
Dmitriy Zaporozhets
ef9f8677e6
Expose author username in project events API
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-31 12:08:45 +02:00
Kirill Zaitsev
b4963e9dda
Add tag_push_events to project hook api
2014-10-03 10:23:32 +04:00
Bernhard Kaindl
f030ee846e
API: Initial support for forking a project via the API
...
This change adds POST /projects/fork/:id to the API for forking
a project into the namespace of the authenticated user, like the
"create fork" link in the GUI does. It also calls the same code.
Failure and permission checks (except for conflict) are already
implemented and handled in ForkService and the API, so the added
code is simple and does not alter anything.
2014-10-01 10:27:48 +02:00
Dmitriy Zaporozhets
8c765aaf3f
Update project api docs
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-09 10:52:30 +03:00
Ciro Santilli
a1d0997850
Fix Md style for projects API doc.
2014-08-15 10:52:37 +02:00
Robert Schilling
9284038dbe
Add, delete labels via API
2014-08-13 12:28:19 +02:00
Dmitriy Zaporozhets
d10ecacc47
Merge branch 'master' into 'master'
...
Let users limit by archived/not archived projects in GitLab API GET /projects
Adds a boolean parameter, archived, to the /projects endpoint.
See merge request !158
2014-08-11 09:27:24 +00:00
Rob Taylor
79d71461c2
Text changes to projects API documentation
...
Fixes some grammar / punctuation errors and inconsistencies.
2014-07-31 17:39:04 +01:00
Sasha Joseph
37c4ba6f8d
Add an option to GET /projects in the GitLab API to exclude archived projects
2014-07-28 12:48:13 -04:00
Dmitriy Zaporozhets
66098dbb59
Merge pull request #7089 from NARKOZ/api-patch
...
API patch
2014-07-23 20:26:36 +03:00
Dmitriy Zaporozhets
1355ede49d
Wipe wall notes feature
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-06-13 14:24:54 +03:00
Nihad Abbasov
1e160e130d
update API docs
2014-06-06 06:32:39 +05:00
Marin Jankovski
f22c709539
Add titles to doc pages.
2014-05-27 14:12:15 +02:00
Marcus Ilgner
61e6863403
Add info about exposed Project::archived to API docs
2014-04-20 12:01:55 +02:00
Johannes Schleifenbaum
49addad7b5
Api-Doc JSON lint
...
Fixes : #5505
2014-04-05 08:37:42 +02:00
Ábner Silva de Oliveira
19938156d8
documentation for api method which get labels of a project
2014-03-23 19:20:17 -03:00
Dmitriy Zaporozhets
86c76eccea
Add more api docs
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-03-17 15:22:39 +02:00
dosire
0007db8352
Doesn't exist for user endpoint.
2014-02-18 15:38:07 +01:00
dosire
dac0e2f174
Add namespace for projects to docs.
2014-02-14 11:13:52 +01:00
Marin Jankovski
441e6dcf0d
Update api project documentation to include project name as attribute.
2014-02-11 11:44:08 +01:00
Maxime Brugidou
cd8a90eee5
Add import_url in API docs
2013-12-30 11:39:26 +01:00
Dmitriy Zaporozhets
21f4e5d3ac
ProjectHook API supports new event fields
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-12-04 13:37:39 +02:00
Sytse Sijbrandij
71e92681f2
We welcome everyone to contribute.
2013-12-01 11:53:00 +01:00
Jason Hollingsworth
d9bb4230cc
Adding authenticated public mode (internal).
...
Added visibility_level icons to project view (rather than just text).
Added public projects to search results.
Added ability to restrict visibility levels standard users can set.
2013-11-26 22:22:07 -06:00
Dmitriy Zaporozhets
434d276dba
better wording for api doc
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-11-18 19:53:10 +02:00
Dmitriy Zaporozhets
11931bfb9c
update projects api docs
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-11-18 16:49:29 +02:00
Dmitriy Zaporozhets
cfa15d0846
Remove default_branch support from API project creation
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-11-06 19:14:11 +02:00
Marin Jankovski
1712406f8a
Add an example.
2013-10-18 09:11:37 +02:00
Marin Jankovski
7c3fd6941f
Update project api doc.
2013-10-17 12:16:57 +02:00
Dmitriy Zaporozhets
51825e434e
API: docs for remove project
2013-10-09 14:43:18 +03:00
Marin Jankovski
da54a1e644
Update group access levels in docs.
2013-10-02 16:41:01 +02:00
Marin Jankovski
f22e6c917d
Update project api docs.
2013-10-01 23:13:09 +02:00
Izaak Alpert
04c7c262a7
Used pagnation function from api helpers
...
Change-Id: I1bdd3608d3b46924b5da3ae282c99f85ee4e0dab
2013-09-24 09:22:46 -04:00
Izaak Alpert
9d06921ffb
Added missing API documentation
...
Change-Id: I1337ee7ff51d018d6f62d447345032597e84269f
2013-09-23 19:36:39 -04:00
Johannes Schleifenbaum
cd19f82e51
Fix typos
2013-07-29 12:47:06 +02:00
Angus MacArthur
ace5c54ab9
enhance project creation apis to allow setting of public attribute
...
Change-Id: Ib71ce8cf993627eada63d7d596fb302ec702f36e
2013-07-12 12:10:42 -04:00
Dmitriy Zaporozhets
8cdfa86b57
Merge pull request #3993 from bke-drewb/3599
...
Issue 3599: Add snippets_enabled flag to projects for API
2013-07-11 09:54:15 -07:00
Angus MacArthur
ea5a006f27
Additon of apis for fork administration.
...
Added ability to add and remove the forked from/to relatioinship
between existing repos.
2013-07-08 17:34:00 -04:00
Drew Blessing
31b06ebd01
Issue 3599: Add snippets_enabled flag to projects for API
...
s 3599: Add snippets_enabled flag to projects for API
Replace missing comma
2013-06-11 21:38:02 -05:00
Dmitriy Zaporozhets
8df699a336
API: project events
2013-06-06 19:19:17 +03:00
Dmitriy Zaporozhets
543506f3c5
API: Add last_activity_at date to project entity
2013-06-06 18:40:05 +03:00
Dmitriy Zaporozhets
68d146b4a6
Improve api docs
2013-06-06 13:19:23 +03:00
Mathew Winstone
16c3d70315
Fixed typo in project hook documentation
2013-04-25 08:47:04 -04:00
Sebastian Ziebell
3374027e3a
Merge branch 'master' into fixes/api, code clean up and tests fixed
...
Conflicts:
doc/api/projects.md
spec/requests/api/projects_spec.rb
2013-03-07 14:51:56 +01:00
Dmitriy Zaporozhets
7c408960ce
Merge pull request #3146 from amacarthur/AdminAPIs
...
Additional Admin APIs
2013-03-06 22:57:24 -08:00
Sebastian Ziebell
39114d259c
API: documentation contains infos to status codes in README file.
...
All the info to return codes from the API functions are available in the `README.md` file as suggested.
2013-03-07 00:15:57 +01:00
Angus MacArthur
47abdc10ca
Updated documentation for added Admin APIs
2013-03-05 23:48:40 -05:00
Matt Humphrey
f411772e33
Project deploy keys API
2013-03-05 21:23:29 +00:00
Sebastian Ziebell
7499f65014
API: extracted helper method to validate required parameters, code clean up
...
Added a helper method to check if required parameters are given in an API call. Can be used
to return a `400 Bad Request` return code if a required attribute is missing.
Code clean up and fixed tests.
2013-02-27 17:50:30 +01:00
Sebastian Ziebell
43d7596030
Merge branch 'feature/api-documentation-fixes' of github.com:Xylakant/gitlabhq into fixes/api
...
Conflicts:
doc/api/projects.md
2013-02-27 16:49:45 +01:00
Sebastian Ziebell
f0e417091c
Merge branch 'master' into fixes/api
...
Conflicts:
spec/requests/api/projects_spec.rb
2013-02-20 14:30:11 +01:00
Sebastian Ziebell
eefb27f5ae
Merge branch 'master' into fixes/api
...
Conflicts:
spec/requests/api/projects_spec.rb
2013-02-20 12:43:32 +01:00
Matt Humphrey
33c513274d
Fix RESTfulness of project hook deletions by API
2013-02-20 11:35:36 +00:00
Dmitriy Zaporozhets
67465dc5ef
Fix private flag for project
2013-02-19 11:45:49 +02:00
Sebastian Ziebell
da040fc134
API documentation expanded with status code information
...
Information to return codes added to projects and users documentation.
2013-02-18 11:15:26 +01:00
Sebastian Ziebell
beb00af0c1
API documentation extended with snippets, tags and commits
...
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`.
2013-02-15 18:50:52 +01:00
Sebastian Ziebell
99739a58c3
API documentation extended with infos to project branches
2013-02-15 13:54:26 +01:00
Sebastian Ziebell
12a1f73b61
API projects documentation grouped into sections & updated with status codes
...
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.
2013-02-14 20:43:48 +01:00
Sebastian Ziebell
8045a81bcf
Merge branch 'master' into fixes/api
2013-02-08 10:32:42 +01:00
Felix Gilcher
566de5ab06
update api documentation for delete team member
...
correctly describes the new behavior
2013-02-01 14:20:51 +00:00
Dmitriy Zaporozhets
193a5624b2
add path and path_with_namespace to api project entity
2013-01-31 09:11:35 +02:00
Felix Gilcher
e76215a395
Update docs to reflect that project names are allowed as ID
...
The API accepts project names in all places where project IDs are expected. Updated the docs to
reflect that.
2013-01-28 23:51:45 +01:00
Felix Gilcher
a90d5c21b5
describe the project access level
...
the documentation mentions access_level as required parameter, but fails to list
accepted values.
2013-01-28 16:46:58 +01:00
Riyad Preukschas
056fa05b86
Remove path parameter from projects API
2012-12-22 20:06:18 +01:00
Riyad Preukschas
8f01190eb5
Remove all references tp the project code parameter from the API
2012-12-21 18:47:04 +01:00
Riyad Preukschas
931ec399bd
Remove the code parameter from the projects API
2012-12-21 18:43:46 +01:00
Valeriy Sizov
77d632890b
refactoring gfm_autocomplete
2012-12-20 20:52:12 +02:00
Cyril
d3b8952f8f
Add username to User and UserBasic entities in API and in examples in doc.
2012-12-12 18:51:20 +01:00
jozefvaclavik
d0000e5c18
Update doc/api/projects.md for hooks API
...
Added documentation for getting project hook and editing project hook.
2012-10-12 10:38:15 +03:00
Nihad Abbasov
4162566e11
separate project repositories API docs
2012-09-21 05:03:50 -07:00
Nihad Abbasov
4a072be2d7
API: commits belong to project repository
2012-09-21 04:34:07 -07:00
Nihad Abbasov
25b745271a
add API for project team members
2012-09-21 03:23:17 -07:00
Nihad Abbasov
4e1f1e1422
API docs minor formatting fix
...
[ci-skip]
2012-09-20 18:34:07 +06:00
miks
3b5a90bdf6
Projects hooks API implemented
2012-09-08 20:51:12 +03:00
miks
4226458faf
Merge branch 'master' into project_users_api
2012-09-08 10:50:24 +03:00
Dmitriy Zaporozhets
7c0a1068bf
Merge pull request #1363 from AlexDenisov/api_create_project_fixes
...
API create project fixes
2012-09-06 23:00:04 -07:00
miks
909c8c345d
Make project users API more RESTful
2012-09-06 23:49:29 +03:00
miks
3d3c6674fb
Typo fixed
2012-09-06 16:32:26 +03:00
miks
8f7360f390
API on adding users to project implemented
2012-09-05 23:01:03 +03:00
Rob Taylor
4cb03183ac
Text changes to API documentation
2012-09-04 09:48:33 +01:00
Alex Denisov
e078a173d6
Create project via API: fixes added
2012-09-03 18:00:24 +03:00
Alex Denisov
9811e64d71
Typo and mistakes fixed
2012-08-31 11:11:12 +03:00
Alex Denisov
acac1547a0
JSON for new project removed from API docs
2012-08-31 10:28:38 +03:00
Alex Denisov
b6a0407e7a
Docs changed for Create Project API
2012-08-31 10:27:45 +03:00
Alex Denisov
985ecf0f04
Docs added for Create Project API
2012-08-31 10:25:36 +03:00
randx
fee26c58e2
Move snippets api doc to separate file
2012-08-25 19:21:11 +03:00
Jeremy Anderson
ce837f3d1b
fixed typo
2012-07-31 07:34:06 -07:00
Jeremy Anderson
69c4cea65a
updating project api to include raw blob contents and single branch
2012-07-31 07:32:44 -07:00
Nihad Abbasov
949b1df930
API: update docs
2012-07-25 02:35:41 -07:00
Nihad Abbasov
4083cfa4de
fix typo
2012-07-05 21:20:01 +06:00
Nihad Abbasov
f086676b7c
add docs for existing API
2012-07-05 06:57:45 -07:00