diff options
author | Max Wittig <max.wittig@siemens.com> | 2020-01-21 22:01:40 +0100 |
---|---|---|
committer | Max Wittig <max.wittig95@gmail.com> | 2020-01-22 21:27:03 +0100 |
commit | 5650db9fd2ddcfef9da4ec972fefd82a7bfdef03 (patch) | |
tree | 3698384ade48dd7ff1e19b7c344474e090b51ec9 /gitlab/v4/objects/issue.py | |
parent | afdc43f401e20550ed181d4b87829739791d2ee3 (diff) | |
download | gitlab-5650db9fd2ddcfef9da4ec972fefd82a7bfdef03.tar.gz |
refactor: structure python objects in a reasonable way
Diffstat (limited to 'gitlab/v4/objects/issue.py')
-rw-r--r-- | gitlab/v4/objects/issue.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gitlab/v4/objects/issue.py b/gitlab/v4/objects/issue.py new file mode 100644 index 0000000..e877cdc --- /dev/null +++ b/gitlab/v4/objects/issue.py @@ -0,0 +1,33 @@ +from gitlab.base import * # noqa +from gitlab.exceptions import * # noqa +from gitlab.mixins import * # noqa +from gitlab import types +from gitlab import utils + + +class Issue(RESTObject): + _url = "/issues" + _short_print_attr = "title" + + +class IssueManager(ListMixin, RESTManager): + _path = "/issues" + _obj_cls = Issue + _list_filters = ( + "state", + "labels", + "milestone", + "scope", + "author_id", + "assignee_id", + "my_reaction_emoji", + "iids", + "order_by", + "sort", + "search", + "created_after", + "created_before", + "updated_after", + "updated_before", + ) + _types = {"labels": types.ListAttribute} |