Inital rename of displayName -> username

This commit is contained in:
Wyatt Johnson
2017-02-09 16:48:59 -07:00
parent 646f6040ac
commit 3cd2b28bc2
52 changed files with 171 additions and 164 deletions
+2 -2
View File
@@ -59,12 +59,12 @@ const ErrDisplayTaken = new APIError('Display name already in use', {
status: 400
});
const ErrSpecialChars = new APIError('No special characters are allowed in a display name', {
const ErrSpecialChars = new APIError('No special characters are allowed in a username', {
translation_key: 'NO_SPECIAL_CHARACTERS',
status: 400
});
const ErrMissingDisplay = new APIError('A display name is required to create a user', {
const ErrMissingDisplay = new APIError('A username is required to create a user', {
translation_key: 'DISPLAY_NAME_REQUIRED',
status: 400
});