Browse Source

Merge pull request #1295 from LancerComet/fix-incorrect-signin-response

Fix incorrect response while wrong credentials was provided
pull/1298/head
navi 3 years ago committed by GitHub
parent
commit
320b1bea76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 28
      packages/nocodb/src/lib/noco/rest/RestAuthCtrl.ts

28
packages/nocodb/src/lib/noco/rest/RestAuthCtrl.ts

@ -635,17 +635,19 @@ export default class RestAuthCtrl {
try {
if (!user || !user.email) {
if (err) {
// This exception was thrown directly before.
// err: { msg: string }
return res.status(400).send(err);
}
if (info) {
// info: { message: string }
// Info was thrown directly before.
// In order to avoid breaking change, both "msg" and "message" are returned.
const message = err.message ?? ''
const message = info.message ?? '';
return res.status(400).send({
msg: message,
message
});
}
if (info) {
return res.status(400).send(info);
}
return res.status(400).send({ msg: 'Your signin has failed' });
}
@ -700,13 +702,7 @@ export default class RestAuthCtrl {
try {
if (!user || !user.email) {
if (err) {
// This exception was thrown directly before.
// In order to avoid breaking change, both "msg" and "message" are returned.
const message = err.message ?? ''
return res.status(400).send({
msg: message,
message
});
return res.status(400).send(err);
}
if (info) {
return res.status(400).send(info);
@ -765,13 +761,7 @@ export default class RestAuthCtrl {
try {
if (!user || !user.email) {
if (err) {
// This exception was thrown directly before.
// In order to avoid breaking change, both "msg" and "message" are returned.
const message = err.message ?? ''
return res.status(400).send({
msg: message,
message
});
return res.status(400).send(err);
}
if (info) {
return res.status(400).send(info);

Loading…
Cancel
Save