From b310eb1a7eab03013fe76cbff85d61cdfcd1a1c9 Mon Sep 17 00:00:00 2001 From: Kartik Saini <41051387+kart1ka@users.noreply.github.com> Date: Fri, 7 Jun 2024 20:00:36 +0530 Subject: [PATCH] feat: Remove minimum of 2 teams for making an Org (#15267) * feat: Remove min of 2 teams for making an Org * Set ORG_MINIMUM_PUBLISHED_TEAMS_SELF_SERVE to 0 --- packages/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lib/constants.ts b/packages/lib/constants.ts index 3e64a52cda..418bb795c2 100644 --- a/packages/lib/constants.ts +++ b/packages/lib/constants.ts @@ -151,7 +151,7 @@ export const BOOKER_NUMBER_OF_DAYS_TO_LOAD = parseInt( export const CLOUDFLARE_SITE_ID = process.env.NEXT_PUBLIC_CLOUDFLARE_SITEKEY; export const MINIMUM_NUMBER_OF_ORG_SEATS = 30; export const ORG_SELF_SERVE_ENABLED = process.env.NEXT_PUBLIC_ORG_SELF_SERVE_ENABLED === "1"; -export const ORG_MINIMUM_PUBLISHED_TEAMS_SELF_SERVE = 2; +export const ORG_MINIMUM_PUBLISHED_TEAMS_SELF_SERVE = 0; /** * The maximum number of days we should check for if we don't find all required bookable days * Counter start from current day and we would like to not go beyond 2 months(max days possible) from current day.