From d8e49470385611930d8d8c569ad7532cec68cfb9 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sat, 18 May 2019 13:18:21 +0200 Subject: [PATCH] Add new json types to allTypes --- libnymea-core/jsonrpc/jsontypes.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libnymea-core/jsonrpc/jsontypes.cpp b/libnymea-core/jsonrpc/jsontypes.cpp index 39d1c21a..08b3ab6e 100644 --- a/libnymea-core/jsonrpc/jsontypes.cpp +++ b/libnymea-core/jsonrpc/jsontypes.cpp @@ -497,6 +497,8 @@ QVariantMap JsonTypes::allTypes() allTypes.insert("WebServerConfiguration", serverConfigurationDescription()); allTypes.insert("Tag", tagDescription()); allTypes.insert("MqttPolicy", mqttPolicyDescription()); + allTypes.insert("Package", packageDescription()); + allTypes.insert("Repository", repositoryDescription()); return allTypes; }