summary refs log tree commit diff
path: root/synapse/rest/client/v1/push_rule.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-03-02 18:17:19 +0000
committerDavid Baker <dave@matrix.org>2015-03-02 18:17:19 +0000
commit6fab7bd2c1102c3f3254074cc996d950805531b4 (patch)
tree5ce2f6d16e3f832fb69b50eaea5592a00639c1f2 /synapse/rest/client/v1/push_rule.py
parentOops, missed a replacement. (diff)
downloadsynapse-6fab7bd2c1102c3f3254074cc996d950805531b4.tar.xz
s/user_name/user/ as per mjark's comment
Diffstat (limited to 'synapse/rest/client/v1/push_rule.py')
-rw-r--r--synapse/rest/client/v1/push_rule.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/rest/client/v1/push_rule.py b/synapse/rest/client/v1/push_rule.py
index 822c978e85..fef0eb6572 100644
--- a/synapse/rest/client/v1/push_rule.py
+++ b/synapse/rest/client/v1/push_rule.py
@@ -114,7 +114,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
         # we build up the full structure and then decide which bits of it
         # to send which means doing unnecessary work sometimes but is
         # is probably not going to make a whole lot of difference
-        rawrules = yield self.hs.get_datastore().get_push_rules_for_user_name(
+        rawrules = yield self.hs.get_datastore().get_push_rules_for_user(
             user.to_string()
         )
 
@@ -129,7 +129,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
         rules['global'] = _add_empty_priority_class_arrays(rules['global'])
 
         enabled_map = yield self.hs.get_datastore().\
-            get_push_rules_enabled_for_user_name(user.to_string())
+            get_push_rules_enabled_for_user(user.to_string())
 
         for r in ruleslist:
             rulearray = None
@@ -212,7 +212,7 @@ class PushRuleRestServlet(ClientV1RestServlet):
 
     def get_rule_attr(self, user_name, namespaced_rule_id, attr):
         if attr == 'enabled':
-            return self.hs.get_datastore().get_push_rule_enabled_by_user_name_rule_id(
+            return self.hs.get_datastore().get_push_rule_enabled_by_user_rule_id(
                 user_name, namespaced_rule_id
             )
         else: