This commit is contained in:
Barış Soner Uşaklı
2026-01-19 22:26:09 -05:00
parent 84bd409a7c
commit 7e27da61ab
2 changed files with 16 additions and 18 deletions

View File

@@ -84,17 +84,7 @@ authenticationController.register = async function (req, res) {
await user.verifyInvitation(userData);
}
if (
!userData.username ||
userData.username.length < meta.config.minimumUsernameLength ||
slugify(userData.username).length < meta.config.minimumUsernameLength
) {
throw new Error('[[error:username-too-short]]');
}
if (userData.username.length > meta.config.maximumUsernameLength) {
throw new Error('[[error:username-too-long]]');
}
user.checkUsernameLength(userData.username);
if (userData.password !== userData['password-confirm']) {
throw new Error('[[user:change-password-error-match]]');