mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
refactor: Authentication service.
This commit is contained in:
10
server/src/interfaces/Register.ts
Normal file
10
server/src/interfaces/Register.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
|
||||
|
||||
|
||||
export interface IRegisterDTO {
|
||||
firstName: string,
|
||||
lastName: string,
|
||||
email: string,
|
||||
password: string,
|
||||
organizationName: string,
|
||||
};
|
||||
9
server/src/interfaces/User.ts
Normal file
9
server/src/interfaces/User.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
export interface ISystemUser {
|
||||
|
||||
}
|
||||
|
||||
export interface ISystemUserDTO {
|
||||
|
||||
}
|
||||
@@ -28,6 +28,13 @@ import {
|
||||
ISaleEstimate,
|
||||
ISaleEstimateOTD,
|
||||
} from './SaleEstimate';
|
||||
import {
|
||||
IRegisterDTO,
|
||||
} from './Register';
|
||||
import {
|
||||
ISystemUser,
|
||||
ISystemUserDTO,
|
||||
} from './User';
|
||||
|
||||
export {
|
||||
IBillPaymentEntry,
|
||||
@@ -58,4 +65,8 @@ export {
|
||||
|
||||
IPaymentReceive,
|
||||
IPaymentReceiveOTD,
|
||||
|
||||
IRegisterDTO,
|
||||
ISystemUser,
|
||||
ISystemUserDTO,
|
||||
};
|
||||
Reference in New Issue
Block a user