auth-service-nestjs
Version:
Authorization service for lightweight systems
12 lines (11 loc) • 374 B
text/typescript
export enum ErrorMessage {
IncorrectLoginPassword = 'IncorrectLoginPassword',
BadRequest = 'BadRequest',
SessionNotFound = 'SessionNotFound',
UserNotFound = 'UserNotFound',
NotEnoughAccessRights = 'NotEnoughAccessRights',
Unauthorized = 'Unauthorized',
NotAcceptable = 'NotAcceptable',
UserLocked = 'UserLocked',
RefreshTokenError = 'RefreshTokenError',
}