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
@@ -80,6 +80,7 @@ If you use Terraform to manage your infrastructure, MongoDB for VS Code helps yo
80
80
|`mdb.defaultLimit`| The number of documents to fetch when viewing documents from a collection. |`10`|
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
+
|`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`|
83
84
|`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)|
84
85
|`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`|
85
86
|`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
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -932,6 +932,11 @@
932
932
"default": true,
933
933
"description": "Show a confirmation message before deleting a document from the tree view."
934
934
},
935
+
"mdb.persistOIDCTokens": {
936
+
"type": "boolean",
937
+
"default": true,
938
+
"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."
0 commit comments