Can edit more network settings

This commit is contained in:
2023-12-06 15:30:30 +01:00
parent 7bf4e87df1
commit b7d44f3091
17 changed files with 384 additions and 77 deletions

View File

@ -170,4 +170,16 @@ export class ServerApi {
})
).data;
}
/**
* Get host networks card list
*/
static async GetNetworksList(): Promise<string[]> {
return (
await APIClient.exec({
method: "GET",
uri: "/server/networks",
})
).data;
}
}