From de791f87ced36d95da3844aa7c17dfb1b5e5ea50 Mon Sep 17 00:00:00 2001 From: diallolatoile Date: Mon, 22 Dec 2025 08:54:15 +0000 Subject: [PATCH] feat: add DCB User Service API - Authentication system with KEYCLOAK - Modular architecture with services for each feature --- src/app/modules/hub-users-management/hub-users.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/modules/hub-users-management/hub-users.ts b/src/app/modules/hub-users-management/hub-users.ts index 36f06be..3d70d88 100644 --- a/src/app/modules/hub-users-management/hub-users.ts +++ b/src/app/modules/hub-users-management/hub-users.ts @@ -141,7 +141,7 @@ export class HubUsersManagement implements OnInit, OnDestroy { .subscribe({ next: (user) => { this.currentUserRole = this.extractUserRole(user); - this.canCreateUsers === this.roleService.isHubUser(); + this.canCreateUsers = this.roleService.isHubUser(); console.log(`HUB User ROLE: ${this.currentUserRole}`);