diff --git a/backend/server/api/custom-domains/index.post.ts b/backend/server/api/custom-domains/index.post.ts index 038eefe..81c18ed 100644 --- a/backend/server/api/custom-domains/index.post.ts +++ b/backend/server/api/custom-domains/index.post.ts @@ -22,7 +22,9 @@ const VIP_COUNTRIES = ["DE", "GB", "FR"] as const; // kuratierte Liste reserviert (RESERVED_CURATED in webcontent-domains.get.ts) // → max. 30 eigene Custom-Domains. Wird die überschritten, greift der // VIP-Slot-Replace-Flow (Swap mit 24h-Cooldown). -const MAX_VIP_CUSTOM = 30; +// ⚠️ TEMP-TEST-WERT: 3 statt 30 — damit der Swap-Dialog schon ab der +// 4. Web-Domain triggert. NACH DEM TEST auf 30 ZURÜCKSETZEN! +const MAX_VIP_CUSTOM = 3; const SWAP_COOLDOWN_MS = 24 * 60 * 60 * 1000; /** Client-`country` (Geräte-Region) → unterstützter VIP-Ländercode. Fallback DE. */