fix (backend): add missing Relation wrapper

should have done in aedf873248
This commit is contained in:
naskya 2024-04-12 02:42:17 +09:00
parent 24f79d4796
commit afc57d834c
No known key found for this signature in database
GPG Key ID: 712D413B3A9FED5C
1 changed files with 1 additions and 1 deletions

View File

@ -47,6 +47,6 @@ export class AuthSession {
onDelete: "CASCADE",
})
@JoinColumn()
public app: App;
public app: Relation<App>;
//#endregion
}