Updated node types

This commit is contained in:
Francesco Siddi 2015-05-27 01:13:14 +02:00
parent 65ce04cac4
commit 75aba1b210

View File

@ -84,11 +84,13 @@ def populate_node_types(old_ids={}):
},
"status": {
"type": "string",
"allowed": ["on_hold",
"allowed": [
"on_hold",
"todo",
"in_progress",
"review_required",
"final"],
"final"
],
},
"notes": {
"type": "string",
@ -127,15 +129,21 @@ def populate_node_types(old_ids={}):
"type": "string",
"allowed": [
"todo",
"in-progress",
"in_progress",
"done",
"cbb",
"final1",
"final2",
"review"
"final",
"review",
"conflict"
],
"required": True,
},
"filepath": {
"type": "string",
},
"revision": {
"type": "integer",
},
"owners": {
"type": "dict",
"schema": {
@ -181,6 +189,8 @@ def populate_node_types(old_ids={}):
},
"form_schema": {
"status": {},
"filepath": {},
"revision": {},
"owners": {
"schema": {
"users":{