Merge pull request #148 from Zash/newscopes

Update to match new Prosody scope naming scheme
This commit is contained in:
Jonas Schäfer
2023-03-28 21:42:00 +02:00
committed by GitHub

View File

@@ -27,8 +27,8 @@ from . import xmpputil
from .xmpputil import split_jid
SCOPE_DEFAULT = "prosody:scope:default"
SCOPE_ADMIN = "prosody:scope:admin"
SCOPE_DEFAULT = "prosody:user"
SCOPE_ADMIN = "prosody:admin"
T = typing.TypeVar("T")