fix?
This commit is contained in:
parent
36aef5a063
commit
e4ca9590bd
1 changed files with 1 additions and 3 deletions
|
|
@ -7,9 +7,7 @@ export default async (ctx: Koa.Context) => {
|
||||||
|
|
||||||
const code = body["code"];
|
const code = body["code"];
|
||||||
|
|
||||||
const profile = await UserProfiles.findOneBy({
|
const profile = await UserProfiles.findOneByOrFail({ emailVerifyCode: code });
|
||||||
emailVerifyCode: ctx.params.code,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (profile != null) {
|
if (profile != null) {
|
||||||
ctx.body = "Verify succeeded!";
|
ctx.body = "Verify succeeded!";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue