mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-11-14 09:50:53 -05:00
Fix errorcode for disabled registration (#8867)
The spec says we should return `M_FORBIDDEN` when someone tries to register and registration is disabled.
This commit is contained in:
parent
66f75c5b74
commit
cf3b8156be
3 changed files with 3 additions and 1 deletions
|
|
@ -451,7 +451,7 @@ class RegisterRestServlet(RestServlet):
|
|||
|
||||
# == Normal User Registration == (everyone else)
|
||||
if not self._registration_enabled:
|
||||
raise SynapseError(403, "Registration has been disabled")
|
||||
raise SynapseError(403, "Registration has been disabled", Codes.FORBIDDEN)
|
||||
|
||||
# For regular registration, convert the provided username to lowercase
|
||||
# before attempting to register it. This should mean that people who try
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue