forked from FoundKeyGang/FoundKey
Better reponse
This commit is contained in:
parent
3476be16ab
commit
75e4c8d74d
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ export default async (ctx: Koa.Context) => {
|
|||
if (verified) {
|
||||
signin(ctx, user);
|
||||
} else {
|
||||
ctx.throw(400, {
|
||||
ctx.throw(403, {
|
||||
error: 'invalid token'
|
||||
});
|
||||
}
|
||||
|
@ -71,7 +71,7 @@ export default async (ctx: Koa.Context) => {
|
|||
signin(ctx, user);
|
||||
}
|
||||
} else {
|
||||
ctx.throw(400, {
|
||||
ctx.throw(403, {
|
||||
error: 'incorrect password'
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue