From 08ce84fe319e18b344bdd8e5848d2c2da1ec0ab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 26 Mar 2018 18:49:13 +0200 Subject: [PATCH] Drop 'template' from blog node type --- pillar/api/node_types/blog.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pillar/api/node_types/blog.py b/pillar/api/node_types/blog.py index aa746cd2..1eac61ca 100644 --- a/pillar/api/node_types/blog.py +++ b/pillar/api/node_types/blog.py @@ -2,10 +2,6 @@ node_type_blog = { 'name': 'blog', 'description': 'Container for node_type post.', 'dyn_schema': { - # Path for a custom template to be used for rendering the posts - 'template': { - 'type': 'string', - }, 'categories': { 'type': 'list', 'schema': { @@ -17,5 +13,5 @@ node_type_blog = { 'categories': {}, 'template': {}, }, - 'parent': ['project',], + 'parent': ['project', ], }