From a85b48512cc78bc8f12fba348669d8d9e265cac1 Mon Sep 17 00:00:00 2001 From: Stefan Melmuk <509385+stefan0xC@users.noreply.github.com> Date: Tue, 21 Oct 2025 20:23:46 +0200 Subject: [PATCH] add seat limit for the invite dialog (#6371) --- src/db/models/organization.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/models/organization.rs b/src/db/models/organization.rs index 77cf91c0..602a997e 100644 --- a/src/db/models/organization.rs +++ b/src/db/models/organization.rs @@ -473,7 +473,7 @@ impl Membership { "id": self.org_uuid, "identifier": null, // Not supported "name": org.name, - "seats": null, + "seats": 20, // hardcoded maxEmailsCount in the web-vault "maxCollections": null, "usersGetPremium": true, "use2fa": true,