revert : Added displayUsername and username update functionality

removes implemenation from #35699
This reverts commit e154f38118.
This commit is contained in:
Mrugesh Mohapatra
2019-12-13 00:52:36 +05:30
committed by mrugesh
parent 0efaa4c3d7
commit fdb17223ec
13 changed files with 37 additions and 87 deletions

View File

@ -194,7 +194,7 @@ function createUpdateMyUsername(app) {
user,
body: { username }
} = req;
if (username.toLowerCase() === user.username) {
if (username === user.username) {
return res.json({
type: 'info',
message: 'Username is already associated with this account'
@ -209,7 +209,7 @@ function createUpdateMyUsername(app) {
});
}
const exists = await User.doesExist(username.toLowerCase());
const exists = await User.doesExist(username);
if (exists) {
return res.json({
@ -218,19 +218,16 @@ function createUpdateMyUsername(app) {
});
}
return user.updateAttributes(
{ username: username.toLowerCase(), displayUsername: username },
err => {
if (err) {
res.status(500).json(standardErrorMessage);
return next(err);
}
return res.status(200).json({
type: 'success',
message: `We have updated your username to ${username}`
});
return user.updateAttribute('username', username, err => {
if (err) {
res.status(500).json(standardErrorMessage);
return next(err);
}
);
return res.status(200).json({
type: 'success',
message: `We have updated your username to ${username}`
});
});
};
}