Add SecurityEventNotification handler
All checks were successful
ci/woodpecker/push/docker Pipeline was successful

This commit is contained in:
Oliver Traber 2024-04-20 17:46:46 +02:00
parent abb106428b
commit 970da93192

View file

@ -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()