summary refs log tree commit diff
path: root/synapse/module_api/errors.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2022-04-27 15:55:33 +0200
committerGitHub <noreply@github.com>2022-04-27 13:55:33 +0000
commit5ef673de4f0bf991402ee29235741a91a7cc9b02 (patch)
tree2668af82d4ea46519d9c401925d53ff07cb95881 /synapse/module_api/errors.py
parentUse supervisord to supervise Postgres and Caddy in the Complement image. (#12... (diff)
downloadsynapse-5ef673de4f0bf991402ee29235741a91a7cc9b02.tar.xz
Add a module API to allow modules to edit push rule actions (#12406)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'synapse/module_api/errors.py')
-rw-r--r--synapse/module_api/errors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/synapse/module_api/errors.py b/synapse/module_api/errors.py
index 1db900e41f..e58e0e60fe 100644
--- a/synapse/module_api/errors.py
+++ b/synapse/module_api/errors.py
@@ -20,10 +20,14 @@ from synapse.api.errors import (
     SynapseError,
 )
 from synapse.config._base import ConfigError
+from synapse.handlers.push_rules import InvalidRuleException
+from synapse.storage.push_rule import RuleNotFoundException
 
 __all__ = [
     "InvalidClientCredentialsError",
     "RedirectException",
     "SynapseError",
     "ConfigError",
+    "InvalidRuleException",
+    "RuleNotFoundException",
 ]