UI protocol: cleanup version handling code
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / ui-services / UIService001.ts
index a43d96c7ab2ad0211115bbaaabffa7d529d14932..b02bac82cbb029e654e35e69769c45080a4a0fd2 100644 (file)
@@ -45,6 +45,10 @@ export default class UIService001 extends AbstractUIService {
       ProcedureName.AUTHORIZE,
       this.handleProtocolRequest.bind(this) as ProtocolRequestHandler
     );
+    this.requestHandlers.set(
+      ProcedureName.BOOT_NOTIFICATION,
+      this.handleProtocolRequest.bind(this) as ProtocolRequestHandler
+    );
     this.requestHandlers.set(
       ProcedureName.STATUS_NOTIFICATION,
       this.handleProtocolRequest.bind(this) as ProtocolRequestHandler