diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2016-11-14 16:33:08 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2016-11-14 16:33:08 +0100 |
commit | b08d74ac3efb505961971edb998ce430e430d652 (patch) | |
tree | 58c8e8d7cf7fadc7d2a26a2b4916116f5b54eb8a /docs/ext | |
parent | 840cb895f67b4b810eda94e9985d219e74a12397 (diff) | |
download | gitlab-b08d74ac3efb505961971edb998ce430e430d652.tar.gz |
docs: add missing requiredCreateAttrs
Diffstat (limited to 'docs/ext')
-rw-r--r-- | docs/ext/manager_tmpl.j2 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ext/manager_tmpl.j2 b/docs/ext/manager_tmpl.j2 index a8b4686..0de2295 100644 --- a/docs/ext/manager_tmpl.j2 +++ b/docs/ext/manager_tmpl.j2 @@ -62,6 +62,9 @@ Manager for {{ cls | classref() }} objects. {% for a in cls.requiredUrlAttrs %} * ``{{ a }}`` (required if not discovered on the parent objects) {% endfor %} + {% for a in cls.requiredCreateAttrs %} + * ``{{ a }}`` (optional) + {% endfor %} {% for a in cls.optionalCreateAttrs %} * ``{{ a }}`` (optional) {% endfor %} |