Can change VM groups
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-11-02 18:02:03 +01:00
parent c908d00c62
commit 20e6d7931e
6 changed files with 76 additions and 2 deletions

View File

@ -0,0 +1,15 @@
import { APIClient } from "./ApiClient";
export class GroupApi {
/**
* Get the entire list of networks
*/
static async GetList(): Promise<string[]> {
return (
await APIClient.exec({
method: "GET",
uri: "/group/list",
})
).data;
}
}