Merge alpha 0.0.5 to master #54

Merged
niggl merged 292 commits from dev into main 2020-12-23 17:05:35 +00:00
Showing only changes of commit cf583a22fa - Show all commits

View File

@ -47,6 +47,13 @@ export class ResponseUser extends ResponsePrincipal {
@IsString()
email?: string;
/**
* The user's username.
* Optional.
*/
@IsString()
username?: string;
/**
* is user enabled?
*/
@ -81,6 +88,7 @@ export class ResponseUser extends ResponsePrincipal {
this.lastname = user.lastname;
this.phone = user.phone;
this.email = user.email;
this.username = user.username;
this.enabled = user.enabled;
this.profilePic = user.profilePic;
this.groups = user.groups;