From 7aaeb009516c55c7857b225c9ab9331723a661ad Mon Sep 17 00:00:00 2001 From: diallolatoile Date: Mon, 22 Dec 2025 08:49:49 +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 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/modules/hub-users-management/hub-users.ts b/src/app/modules/hub-users-management/hub-users.ts index 5115265..36f06be 100644 --- a/src/app/modules/hub-users-management/hub-users.ts +++ b/src/app/modules/hub-users-management/hub-users.ts @@ -141,6 +141,7 @@ export class HubUsersManagement implements OnInit, OnDestroy { .subscribe({ next: (user) => { this.currentUserRole = this.extractUserRole(user); + this.canCreateUsers === this.roleService.isHubUser(); console.log(`HUB User ROLE: ${this.currentUserRole}`);