0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-26 03:28:59 +02:00

Add some more comments appservice user registration

Explain why we don't validate userids registered via app services
This commit is contained in:
Richard van der Hoff 2017-11-10 12:39:45 +00:00
parent e0ebd1e4bd
commit e508145c9b

View file

@ -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)