From 5650db9fd2ddcfef9da4ec972fefd82a7bfdef03 Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Tue, 21 Jan 2020 22:01:40 +0100 Subject: refactor: structure python objects in a reasonable way --- gitlab/v4/objects/template.py | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 gitlab/v4/objects/template.py (limited to 'gitlab/v4/objects/template.py') diff --git a/gitlab/v4/objects/template.py b/gitlab/v4/objects/template.py new file mode 100644 index 0000000..f9c9191 --- /dev/null +++ b/gitlab/v4/objects/template.py @@ -0,0 +1,43 @@ +from gitlab.base import * # noqa +from gitlab.exceptions import * # noqa +from gitlab.mixins import * # noqa +from gitlab import types +from gitlab import utils + + +class Dockerfile(RESTObject): + _id_attr = "name" + + +class DockerfileManager(RetrieveMixin, RESTManager): + _path = "/templates/dockerfiles" + _obj_cls = Dockerfile + + +class Gitignore(RESTObject): + _id_attr = "name" + + +class GitignoreManager(RetrieveMixin, RESTManager): + _path = "/templates/gitignores" + _obj_cls = Gitignore + + +class Gitlabciyml(RESTObject): + _id_attr = "name" + + +class GitlabciymlManager(RetrieveMixin, RESTManager): + _path = "/templates/gitlab_ci_ymls" + _obj_cls = Gitlabciyml + + +class License(RESTObject): + _id_attr = "key" + + +class LicenseManager(RetrieveMixin, RESTManager): + _path = "/templates/licenses" + _obj_cls = License + _list_filters = ("popular",) + _optional_get_attrs = ("project", "fullname") -- cgit v1.2.1