diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-22 23:05:20 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-12-23 00:41:58 +0100 |
commit | f2eecfb601acc6c67fb52bf2edda93505bc44da5 (patch) | |
tree | c66957356bb6a706b5b6847254a18fdb09906e6a /lib/xsapiv1 | |
parent | 1ecdc95d837e73509243d436fcafea0920599fbe (diff) |
Fixed SDKs management when running in xds VM.v1.0.0-rc2
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/xsapiv1')
-rw-r--r-- | lib/xsapiv1/events.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/xsapiv1/events.go b/lib/xsapiv1/events.go index 84e62c1..1eb981c 100644 --- a/lib/xsapiv1/events.go +++ b/lib/xsapiv1/events.go @@ -53,6 +53,7 @@ const ( EVTFolderStateChange = EventTypePrefix + "folder-state-change" // type EventMsg with Data type xsapiv1.FolderConfig EVTSDKInstall = EventTypePrefix + "sdk-install" // type EventMsg with Data type xsapiv1.SDKManagementMsg EVTSDKRemove = EventTypePrefix + "sdk-remove" // type EventMsg with Data type xsapiv1.SDKManagementMsg + EVTSDKStateChange = EventTypePrefix + "sdk-state-change" // type EventMsg with Data type xsapiv1.SDK ) // EVTAllList List of all supported events @@ -61,6 +62,7 @@ var EVTAllList = []string{ EVTFolderStateChange, EVTSDKInstall, EVTSDKRemove, + EVTSDKStateChange, } // DecodeFolderConfig Helper to decode Data field type FolderConfig |