summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2023-05-09 07:23:27 -0400
committerGitHub <noreply@github.com>2023-05-09 07:23:27 -0400
commit2bfe3f0b8193b62a92975b1f89f6b2e0eb643091 (patch)
treefec8d0bebeedd6664d6bea9759c9064a2a481845 /synapse/api
parentBump hiredis from 2.2.2 to 2.2.3 (#15552) (diff)
downloadsynapse-2bfe3f0b8193b62a92975b1f89f6b2e0eb643091.tar.xz
Use account data constants in more places. (#15554)
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/constants.py1
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: