mirror of
https://github.com/docmost/docmost.git
synced 2025-11-23 05:41:09 +10:00
updates and fixes
* seo friendly urls * custom client serve-static module * database fixes * fix recent pages * other fixes
This commit is contained in:
@ -8,14 +8,18 @@ export interface IUser {
|
||||
avatarUrl: string;
|
||||
timezone: string;
|
||||
settings: any;
|
||||
invitedById: string;
|
||||
lastLoginAt: string;
|
||||
lastActiveAt: Date;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
role: string;
|
||||
workspaceId: string;
|
||||
deactivatedAt: Date;
|
||||
deletedAt: Date;
|
||||
}
|
||||
|
||||
export interface ICurrentUser {
|
||||
user: IUser,
|
||||
workspace: IWorkspace
|
||||
user: IUser;
|
||||
workspace: IWorkspace;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user