diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-09 07:23:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 07:23:27 -0400 |
commit | 2bfe3f0b8193b62a92975b1f89f6b2e0eb643091 (patch) | |
tree | fec8d0bebeedd6664d6bea9759c9064a2a481845 /synapse/api | |
parent | Bump hiredis from 2.2.2 to 2.2.3 (#15552) (diff) | |
download | synapse-2bfe3f0b8193b62a92975b1f89f6b2e0eb643091.tar.xz |
Use account data constants in more places. (#15554)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index c56b2f2561..cde9a2ecef 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -257,6 +257,7 @@ class AccountDataTypes: DIRECT: Final = "m.direct" IGNORED_USER_LIST: Final = "m.ignored_user_list" TAG: Final = "m.tag" + PUSH_RULES: Final = "m.push_rules" class HistoryVisibility: |