Add SecurityEventNotification handler
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
This commit is contained in:
parent
abb106428b
commit
970da93192
|
@ -237,3 +237,7 @@ class ChargePoint(cp):
|
||||||
@on(Action.MeterValues)
|
@on(Action.MeterValues)
|
||||||
async def on_meter_values(self, **kwargs):
|
async def on_meter_values(self, **kwargs):
|
||||||
return call_result.MeterValuesPayload()
|
return call_result.MeterValuesPayload()
|
||||||
|
|
||||||
|
@on(Action.SecurityEventNotification)
|
||||||
|
async def on_security_event_notification(self, **kwargs):
|
||||||
|
return call_result.SecurityEventNotificationPayload()
|
||||||
|
|
Loading…
Reference in a new issue