summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/registration.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/storage/registration.py b/synapse/storage/registration.py
index 697d487126..65ae58a39c 100644
--- a/synapse/storage/registration.py
+++ b/synapse/storage/registration.py
@@ -146,15 +146,15 @@ class RegistrationStore(SQLBaseStore):
         raise StoreError(404, "Token not found.")
 
     @defer.inlineCallbacks
-    def all_users_on_domain(self, domain):
+    def are_all_users_on_domain(self, domain):
         res = yield self.runInteraction(
-            "all_users_on_domain",
-            self._all_users_on_domain_txn,
+            "are_all_users_on_domain",
+            self._are_all_users_on_domain_txn,
             domain
         )
         defer.returnValue(res)
 
-    def _all_users_on_domain_txn(self, txn, domain):
+    def _are_all_users_on_domain_txn(self, txn, domain):
         sql = "SELECT COUNT(*) FROM users WHERE name NOT LIKE ?"
         pat = "%:" + domain
         cursor = txn.execute(sql, (pat,))