ngx-sp-auth 4.3.5 → 4.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/fesm2022/ngx-sp-auth.mjs
CHANGED
|
@@ -1336,7 +1336,7 @@ class MenuServicesService {
|
|
|
1336
1336
|
if (response.Error) {
|
|
1337
1337
|
throw Error(response.ErrorMessage);
|
|
1338
1338
|
}
|
|
1339
|
-
this.saveImageToStorage(response.InfraUsuarioImg.
|
|
1339
|
+
this.saveImageToStorage(response.InfraUsuarioImg.Imagem, response.InfraUsuarioImg.Filename);
|
|
1340
1340
|
}));
|
|
1341
1341
|
}
|
|
1342
1342
|
// #endregion Menu: Usuário
|
|
@@ -3200,7 +3200,7 @@ class MenuLateralComponent {
|
|
|
3200
3200
|
}
|
|
3201
3201
|
getMenuUserImg() {
|
|
3202
3202
|
this._menuServices.getImagemMenu().subscribe({
|
|
3203
|
-
next: response => { this.footerUserImgSrc = response.InfraUsuarioImg.
|
|
3203
|
+
next: response => { this.footerUserImgSrc = response.InfraUsuarioImg.Imagem; },
|
|
3204
3204
|
error: error => { this._projectUtilService.showHttpError(error); }
|
|
3205
3205
|
});
|
|
3206
3206
|
}
|
|
@@ -3607,13 +3607,13 @@ class IMenu {
|
|
|
3607
3607
|
|
|
3608
3608
|
class InfraUsuarioImg {
|
|
3609
3609
|
constructor() {
|
|
3610
|
-
this.
|
|
3611
|
-
this.
|
|
3612
|
-
this.
|
|
3613
|
-
this.
|
|
3614
|
-
this.
|
|
3615
|
-
this.
|
|
3616
|
-
this.
|
|
3610
|
+
this.Tenant_Id = 0;
|
|
3611
|
+
this.Id = 0;
|
|
3612
|
+
this.Imagem = "";
|
|
3613
|
+
this.Filename = "";
|
|
3614
|
+
this.DataCriacao = new Date();
|
|
3615
|
+
this.Is_Active = false;
|
|
3616
|
+
this.UsuarioId = "";
|
|
3617
3617
|
}
|
|
3618
3618
|
}
|
|
3619
3619
|
|