summaryrefslogtreecommitdiff
path: root/gitlab/v3/objects.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop API v3 supportGauvain Pocentek2018-05-191-2389/+0
| | | | Drop the code, the tests, and update the documentation.
* Add support for unsharing projects to v3 API (untested)Eric Sabouraud2018-02-281-0/+14
|
* Remove pipeline schedules from v3 (not supported)Gauvain Pocentek2018-02-051-13/+0
|
* Project pipeline schedulesMoritz Lipp2018-02-051-0/+13
|
* Expected HTTP response for subscribe is 201P. F. Chimento2017-12-031-1/+1
| | | | It seems that the GitLab API gives HTTP response code 201 ("created") when successfully subscribing to an object, not 200.
* Remove deprecated objects/methodsGauvain Pocentek2017-11-101-29/+0
|
* Add mattermost service supportMatej Zerovnik2017-10-131-0/+1
|
* adds project upload feature (#239)James Johnson2017-09-121-0/+63
|
* Fix Args attribute in docstringsGauvain Pocentek2017-08-111-3/+3
|
* Fix merge_when_build_succeeds attribute nameGauvain Pocentek2017-07-091-5/+5
| | | | Fixes #285
* Remove unused future.division importGauvain Pocentek2017-06-111-1/+0
| | | | We don't do math.
* import urlencode() from six.moves.urllib.parse instead of from urllib (#268)Cosimo Lupo2017-06-021-3/+3
| | | | | Fixes AttributeError on Python 3, as `urlencode` function has been moved to `urllib.parse` module. `six.moves.urllib.parse.urlencode()` is an py2.py3 compatible alias of `urllib.parse.urlencode()` on Python 3, and of `urllib.urlencode()` on Python 2.
* Remove extra_attrs argument from _raw_list (unneeded)Gauvain Pocentek2017-05-271-15/+5
|
* Reorganise the code to handle v3 and v4 objectsGauvain Pocentek2017-05-231-0/+2351
Having objects managing both versions will only make the code more complicated, with lots of tests everywhere. This solution might generate some code duplication, but it should be maintainable.