add posibility user can change own password close #16

This commit is contained in:
Adrian Zürcher
2025-11-29 15:53:44 +01:00
parent a81e9f8349
commit 5ecf1eca18
5 changed files with 388 additions and 141 deletions

View File

@@ -1,12 +1,14 @@
import type { Role } from './roles';
import type { Settings } from './settings';
export interface User {
id?: number;
user: string;
email: string;
role: string;
role?: Role;
expiration?: string;
password?: string;
newPassword?: string;
settings?: Settings;
}