diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2022-04-01 11:22:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 11:22:48 +0200 |
commit | e4409301ba91add60d1ee1f1f0e6346228737d70 (patch) | |
tree | 82f98318c2045cb6660e519a4f10ac1e521fdce9 /docs/modules/writing_a_module.md | |
parent | Add set_user_admin function to the module API (#12341) (diff) | |
download | synapse-e4409301ba91add60d1ee1f1f0e6346228737d70.tar.xz |
Add a module callback to react to account data changes (#12327)
Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com> Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
Diffstat (limited to 'docs/modules/writing_a_module.md')
-rw-r--r-- | docs/modules/writing_a_module.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modules/writing_a_module.md b/docs/modules/writing_a_module.md index e7c0ffad58..e6303b739e 100644 --- a/docs/modules/writing_a_module.md +++ b/docs/modules/writing_a_module.md @@ -33,7 +33,7 @@ A module can implement the following static method: ```python @staticmethod -def parse_config(config: dict) -> dict +def parse_config(config: dict) -> Any ``` This method is given a dictionary resulting from parsing the YAML configuration for the |