@if (user(); as currentUser) {

My profile

Identity served by the BFF from the active admin session. Read-only — role assignments are managed in the Entra Admin Center.

Identity

Display name
{{ currentUser.displayName }}
Username
{{ currentUser.username }}
Entra object id
{{ currentUser.oid }}
Tenant id
{{ currentUser.tid }}
@if (currentUser.roles && currentUser.roles.length > 0) {

App roles

Roles assigned on the BFF's Entra app registration. Drives access to /api/admin/* through @RequireAdmin.

}
}