From 8f8b2cfbd4fb6f2226e0493e224a6621d529e3b7 Mon Sep 17 00:00:00 2001 From: Francesco Siddi Date: Fri, 13 Nov 2015 17:32:05 +0100 Subject: [PATCH] Added "deleted" status to some node_types --- pillar/manage.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pillar/manage.py b/pillar/manage.py index adc67f63..12a30837 100644 --- a/pillar/manage.py +++ b/pillar/manage.py @@ -460,7 +460,8 @@ def populate_node_types(old_ids={}): 'type': 'string', 'allowed': [ 'published', - 'pending' + 'pending', + 'deleted' ], }, # Logo @@ -556,7 +557,8 @@ def populate_node_types(old_ids={}): 'type': 'string', 'allowed': [ 'published', - 'pending' + 'pending', + 'deleted' ], }, 'notes': { @@ -593,7 +595,8 @@ def populate_node_types(old_ids={}): 'allowed': [ 'published', 'pending', - 'processing' + 'processing', + 'deleted' ], }, # We expose the type of asset we point to. Usually image, video,