You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,7 @@ If you use Terraform to manage your infrastructure, MongoDB for VS Code helps yo
81
81
|`mdb.confirmRunAll`| Show a confirmation message before running commands in a playground. |`true`|
82
82
|`mdb.confirmDeleteDocument`| Show a confirmation message before deleting a document in the tree view. |`true`|
83
83
|`mdb.persistOIDCTokens`| Remain logged in when using the MONGODB-OIDC authentication mechanism for MongoDB server connection. Access tokens are encrypted using the system keychain before being stored. |`true`|
84
+
|`mdb.showOIDCDeviceAuthFlow`| Opt-in and opt-out for diagnostic and telemetry collection. |`true`|
84
85
|`mdb.excludeFromPlaygroundsSearch`| Exclude files and folders while searching for playground files in the current workspace. | Refer to [`package.json`](https://github.com/mongodb-js/vscode/blob/7b10092db4c8c10c4aa9c45b443c8ed3d5f37d5c/package.json)|
85
86
|`mdb.connectionSaving.``hideOptionToChooseWhereToSaveNewConnections`| When a connection is added, a prompt is shown that let's the user decide where the new connection should be saved. When this setting is checked, the prompt is not shown and the default connection saving location setting is used. |`true`|
86
87
|`mdb.connectionSaving.``defaultConnectionSavingLocation`| When the setting that hides the option to choose where to save new connections is checked, this setting sets if and where new connections are saved. |`Global`|
Copy file name to clipboardExpand all lines: package.json
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -998,10 +998,15 @@
998
998
"default": true,
999
999
"description": "Remain logged in when using the MONGODB-OIDC authentication mechanism for MongoDB server connection. Access tokens are encrypted using the system keychain before being stored."
1000
1000
},
1001
+
"mdb.showOIDCDeviceAuthFlow": {
1002
+
"type": "boolean",
1003
+
"default": false,
1004
+
"description": "Show a checkbox on the connection form to enable device auth flow authentication for MongoDB server OIDC Authentication. This enables a less secure authentication flow that can be used as a fallback when browser-based authentication is unavailable."
1005
+
},
1001
1006
"mdb.sendTelemetry": {
1002
1007
"type": "boolean",
1003
1008
"default": true,
1004
-
"description": "Allow the collection of anonynous diagnostic and usage telemetry data to help improve the product."
1009
+
"description": "Allow the collection of anonymous diagnostic and usage telemetry data to help improve the product."
0 commit comments