Unverified Commit 078be031 authored by Benjamin Wheeler's avatar Benjamin Wheeler Committed by GitHub

Merge pull request #3676 from benjiwheeler/cleanspeak-use-api

use api instead of scratchr2 to validate usernames
parents ec1b0d1b 049c0b94
......@@ -20,16 +20,14 @@ module.exports.validateUsernameLocally = username => {
module.exports.validateUsernameRemotely = username => (
new Promise(resolve => {
api({
host: '', // not handled by API; use existing infrastructure
uri: `/accounts/check_username/${username}/`
uri: `/accounts/checkusername/${username}/`
}, (err, body, res) => {
if (err || res.statusCode !== 200) {
resolve({requestSucceeded: false, valid: false, errMsgId: 'general.error'});
}
let msg = '';
if (body && body[0]) {
msg = body[0].msg;
}
if (body && body.msg) msg = body.msg;
else if (body && body[0]) msg = body[0].msg;
switch (msg) {
case 'valid username':
resolve({requestSucceeded: true, valid: true});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment