From 56e04d8cf0a3dbc3aeb95f132de95c69d4a0200d Mon Sep 17 00:00:00 2001 From: Carlos Monastyrski Date: Mon, 13 Oct 2025 21:11:44 -0300 Subject: [PATCH] Fix identity count used by the license server, removed the status filter as identities accept memberships by default --- backend/src/ee/services/license/license-dal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/ee/services/license/license-dal.ts b/backend/src/ee/services/license/license-dal.ts index 891d60922..a2bd7ec51 100644 --- a/backend/src/ee/services/license/license-dal.ts +++ b/backend/src/ee/services/license/license-dal.ts @@ -44,7 +44,7 @@ export const licenseDALFactory = (db: TDbClient) => { // count org identities const identityDoc = await (tx || db.replicaNode())(TableName.Membership) - .where({ status: OrgMembershipStatus.Accepted, scope: AccessScope.Organization }) + .where({ scope: AccessScope.Organization }) .whereNotNull(`${TableName.Membership}.actorIdentityId`) .where((bd) => { if (orgId) {