[Feature Request] User account confirmation (#23)

This commit is contained in:
Qolzam
2017-11-16 11:44:45 +07:00
parent 55789967eb
commit f64b7bb24d
26 changed files with 571 additions and 231 deletions

View File

@@ -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
}
}
}