flattens user into collections

This commit is contained in:
James
2020-05-18 16:39:40 -04:00
parent 8809bcb573
commit 098b5be274
64 changed files with 321 additions and 431 deletions

View File

@@ -3,7 +3,7 @@ const APIError = require('./APIError');
class AuthenticationError extends APIError {
constructor() {
super('The username or password provided is incorrect.', httpStatus.BAD_REQUEST);
super('The username or password provided is incorrect.', httpStatus.UNAUTHORIZED);
}
}