mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-12 13:01:34 +01:00
Add some more comments appservice user registration
Explain why we don't validate userids registered via app services
This commit is contained in:
parent
e0ebd1e4bd
commit
e508145c9b
1 changed files with 4 additions and 1 deletions
|
@ -225,7 +225,10 @@ class RegisterRestServlet(RestServlet):
|
|||
# fallback to 'username' if they gave one.
|
||||
desired_username = body.get("user", desired_username)
|
||||
|
||||
# XXX we should check that desired_username is valid
|
||||
# XXX we should check that desired_username is valid. Currently
|
||||
# we give appservices carte blanche for any insanity in mxids,
|
||||
# because the IRC bridges rely on being able to register stupid
|
||||
# IDs.
|
||||
|
||||
access_token = get_access_token_from_request(request)
|
||||
|
||||
|
|
Loading…
Reference in a new issue