summaryrefslogtreecommitdiff
path: root/docs/ext/manager_tmpl.j2
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-12-01 01:04:53 +0100
committerGitHub <noreply@github.com>2021-12-01 01:04:53 +0100
commit8d76826fa64460e504acc5924f859f8dbc246b42 (patch)
tree083fefada982c795e2415092794db429abb0c184 /docs/ext/manager_tmpl.j2
parent5a1678f43184bd459132102cc13cf8426fe0449d (diff)
parent86ab04e54ea4175f10053decfad5086cda7aa024 (diff)
downloadgitlab-master.tar.gz
Merge pull request #1723 from python-gitlab/jlvillal/dead_mastermaster
Close-out `master` branch
Diffstat (limited to 'docs/ext/manager_tmpl.j2')
-rw-r--r--docs/ext/manager_tmpl.j238
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/ext/manager_tmpl.j2 b/docs/ext/manager_tmpl.j2
deleted file mode 100644
index 6e71c0c..0000000
--- a/docs/ext/manager_tmpl.j2
+++ /dev/null
@@ -1,38 +0,0 @@
-{% if cls._list_filters %}
-**Object listing filters**
-{% for item in cls._list_filters %}
-- ``{{ item }}``
-{% endfor %}
-{% endif %}
-
-{% if cls._create_attrs %}
-**Object Creation**
-{% if cls._create_attrs[0] %}
-Mandatory attributes:
-{% for item in cls._create_attrs[0] %}
-- ``{{ item }}``
-{% endfor %}
-{% endif %}
-{% if cls._create_attrs[1] %}
-Optional attributes:
-{% for item in cls._create_attrs[1] %}
-- ``{{ item }}``
-{% endfor %}
-{% endif %}
-{% endif %}
-
-{% if cls._update_attrs %}
-**Object update**
-{% if cls._update_attrs[0] %}
-Mandatory attributes for object update:
-{% for item in cls._update_attrs[0] %}
-- ``{{ item }}``
-{% endfor %}
-{% endif %}
-{% if cls._update_attrs[1] %}
-Optional attributes for object update:
-{% for item in cls._update_attrs[1] %}
-- ``{{ item }}``
-{% endfor %}
-{% endif %}
-{% endif %}