logout works

This commit is contained in:
Roland Schneider
2025-11-14 17:17:42 +01:00
parent d11b0c65e0
commit f1f2fefdab
6 changed files with 36 additions and 8 deletions

View File

@@ -25,6 +25,6 @@ export class User {
@JoinTable()
groups: UserGroup[];
@Column({ nullable: true })
hashedRefreshToken?: string;
@Column({ type: 'varchar', nullable: true })
hashedRefreshToken: string | null;
}