diff options
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 630ee81..0384382 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -305,6 +305,18 @@ class NotificationSettingsManager(BaseManager): obj_cls = NotificationSettings +class Dockerfile(GitlabObject): + _url = '/templates/dockerfiles' + canDelete = False + canUpdate = False + canCreate = False + idAttr = 'name' + + +class DockerfileManager(BaseManager): + obj_cls = Dockerfile + + class Gitignore(GitlabObject): _url = '/templates/gitignores' canDelete = False |