add posibility user can change own password close #16
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user