We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd328ac commit 1c1e107Copy full SHA for 1c1e107
src/requests.ts
@@ -87,6 +87,14 @@ export async function includeDrive(driveName: string) {
87
return data;
88
}
89
90
+/**
91
+ * Fetch the list of excluded drives from the filebrowser.
92
+ * @returns The list of excluded drives.
93
+ */
94
+export async function getExcludedDrives() {
95
+ return await requestAPI<IDriveInfo[]>('drives/config', 'GET');
96
+}
97
+
98
/**
99
* Fetch the list of available drives.
100
* @returns The list of available drives.
0 commit comments