From 1c6de3ff39facae612823cb870f52bbe26ee200f Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Fri, 10 Jun 2016 16:39:54 +0200 Subject: [PATCH] Fix an error when updating IOU node --- gns3server/schemas/iou.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gns3server/schemas/iou.py b/gns3server/schemas/iou.py index 42c3177f..4d7ce1bf 100644 --- a/gns3server/schemas/iou.py +++ b/gns3server/schemas/iou.py @@ -42,6 +42,10 @@ IOU_CREATE_SCHEMA = { "maximum": 65535, "type": ["integer", "null"] }, + "console_type": { + "description": "Console type", + "enum": ["telnet", None] + }, "path": { "description": "Path of iou binary", "type": "string" @@ -115,6 +119,10 @@ IOU_UPDATE_SCHEMA = { "maximum": 65535, "type": ["integer", "null"] }, + "console_type": { + "description": "Console type", + "enum": ["telnet", None] + }, "path": { "description": "Path of iou binary", "type": ["string", "null"]