added a pop up in click of mongo shell if its entra only flow (#2531)

* added a pop up in click of mongo shell if its entra only flow

* formatting updated

---------

Co-authored-by: Sakshi Gupta <sakshig@microsoft.com>
This commit is contained in:
sakshigupta12feb
2026-07-13 13:53:16 +05:30
committed by GitHub
parent f678f551bb
commit 4a881651d5
6 changed files with 97 additions and 13 deletions
+2
View File
@@ -36,6 +36,7 @@ export type Features = {
readonly enableContainerCopy: boolean;
readonly enableCloudShell: boolean;
readonly enableRestoreContainer: boolean; // only for Fabric
readonly mongoDisableNativeAuth: boolean;
// can be set via both flight and feature flag
autoscaleDefault: boolean;
@@ -103,6 +104,7 @@ export function extractFeatures(given = new URLSearchParams(window.location.sear
enableContainerCopy: "true" === get("enablecontainercopy"),
enableRestoreContainer: "true" === get("enablerestorecontainer"),
enableCloudShell: true,
mongoDisableNativeAuth: "true" === get("mongodisablenativeauth"),
};
}