fix(error): remove `A` from totpTokenNotFound and totpTokenAlreadyExists errors

This commit is contained in:
Vijay Budhram 2019-01-25 10:00:25 -05:00
Родитель 30fd3d5e46
Коммит d82232c31f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: D49B640E659DCB9E
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -285,9 +285,9 @@ for `code` and `errno` are:
* `code: 400, errno: 153`:
Expired token verification code
* `code: 400, errno: 154`:
A TOTP token already exists for this account.
TOTP token already exists for this account.
* `code: 400, errno: 155`:
A TOTP token not found.
TOTP token not found.
* `code: 400, errno: 156`:
Recovery code not found.
* `code: 400, errno: 157`:

Просмотреть файл

@ -785,7 +785,7 @@ AppError.totpTokenAlreadyExists = () => {
code: 400,
error: 'Bad Request',
errno: ERRNO.TOTP_TOKEN_EXISTS,
message: 'A TOTP token already exists for this account.'
message: 'TOTP token already exists for this account.'
})
}
@ -794,7 +794,7 @@ AppError.totpTokenNotFound = () => {
code: 400,
error: 'Bad Request',
errno: ERRNO.TOTP_TOKEN_NOT_FOUND,
message: 'A TOTP token not found.'
message: 'TOTP token not found.'
})
}