add refresh token

This commit is contained in:
Roland Schneider
2025-11-14 08:49:23 +01:00
parent 5ab072992b
commit f4c0bb0b76
12 changed files with 297 additions and 40 deletions

View File

@@ -24,4 +24,7 @@ export class User {
@ManyToMany(() => UserGroup)
@JoinTable()
groups: UserGroup[];
@Column({ nullable: true })
hashedRefreshToken?: string;
}