Skip to content

Commit

Permalink
✔ Fix Sub-Query ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
bifeldy committed May 9, 2023
1 parent f069b56 commit a4ea3a0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/fansubid/browser/ngsw.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"configVersion": 1,
"timestamp": 1683658624560,
"timestamp": 1683659461132,
"index": "/index.html",
"assetGroups": [
{
Expand Down
2 changes: 1 addition & 1 deletion dist/fansubid/server/main.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/api/services/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ export class AuthService {
const user = await this.userRepo.findOneOrFail({
where: [
{ id: Equal(decoded.user.id) }
]
],
relations: ['kartu_tanda_penduduk_', 'profile_']
});
user.verified = true;
const resUserSave = await this.userRepo.save(user);
Expand Down

0 comments on commit a4ea3a0

Please sign in to comment.