mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: remove path alias.
feat: remove Webpack and depend on nodemon. feat: refactoring expenses. feat: optimize system users with caching. feat: architecture tenant optimize.
This commit is contained in:
@@ -1,13 +1,33 @@
|
||||
|
||||
|
||||
export interface ISystemUser {
|
||||
|
||||
id: number,
|
||||
firstName: string,
|
||||
lastName: string,
|
||||
active: boolean,
|
||||
password: string,
|
||||
email: string,
|
||||
phoneNumber: string,
|
||||
|
||||
roleId: number,
|
||||
tenantId: number,
|
||||
|
||||
inviteAcceptAt: Date,
|
||||
lastLoginAt: Date,
|
||||
}
|
||||
|
||||
export interface ISystemUserDTO {
|
||||
|
||||
firstName: string,
|
||||
lastName: string,
|
||||
password: string,
|
||||
phoneNumber: string,
|
||||
active: boolean,
|
||||
email: string,
|
||||
}
|
||||
|
||||
export interface IInviteUserInput {
|
||||
|
||||
firstName: string,
|
||||
lastName: string,
|
||||
phoneNumber: string,
|
||||
password: string,
|
||||
}
|
||||
Reference in New Issue
Block a user