fix permission check for TenantRoot missing allow field
diff --git a/xos/core/models/user.py b/xos/core/models/user.py
index 91672c5..74b22ea 100644
--- a/xos/core/models/user.py
+++ b/xos/core/models/user.py
@@ -326,7 +326,7 @@
             return True
         return False
 
-    def can_update_tenant_root(self, tenant_root):
+    def can_update_tenant_root(self, tenant_root, allow=[]):
         from core.models.service import TenantRoot
         from core.models.site import SitePrivilege
         if self.can_update_root():