diff options
Diffstat (limited to 'module/PullEvents.py')
-rw-r--r-- | module/PullEvents.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/module/PullEvents.py b/module/PullEvents.py index bbb3f3e6b..16566cfae 100644 --- a/module/PullEvents.py +++ b/module/PullEvents.py @@ -109,3 +109,11 @@ class ReloadAllEvent(): def toList(self): return ["reload", self.destination] + +class AccountUpdateEvent(): + def toList(self): + return ["account"] + +class ConfigUpdateEvent(): + def toList(self): + return ["config"] |