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
This commit is contained in:
Kartik Saini
2024-06-07 14:30:36 +00:00
committed by GitHub
parent 051510fa36
commit b310eb1a7e
+1 -1
View File
@@ -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.