[Feature Request] User account confirmation (#23)
This commit is contained in:
@@ -1,25 +1,23 @@
|
||||
import { BaseDomain } from 'core/domain/common'
|
||||
|
||||
export class LoginUser extends BaseDomain{
|
||||
export class LoginUser extends BaseDomain {
|
||||
|
||||
constructor(uid: string){
|
||||
super()
|
||||
constructor (private _uid: string, private _emailVerified: boolean) {
|
||||
super()
|
||||
}
|
||||
|
||||
this._uid = uid
|
||||
}
|
||||
|
||||
/**
|
||||
* User identifier
|
||||
*
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof LoginUser
|
||||
*/
|
||||
|
||||
private _uid : string
|
||||
public get uid() : string {
|
||||
return this._uid
|
||||
}
|
||||
public get uid (): string {
|
||||
return this._uid
|
||||
}
|
||||
|
||||
|
||||
public get emailVerified (): boolean {
|
||||
return this._emailVerified
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user