Can update / delete member information through UI

This commit is contained in:
2023-08-08 15:21:05 +02:00
parent b828fce039
commit 6495085df6
7 changed files with 203 additions and 10 deletions

View File

@ -26,7 +26,7 @@ export class APIClient {
*/
static async exec(args: {
uri: string;
method: "GET" | "POST" | "DELETE" | "PATCH";
method: "GET" | "POST" | "DELETE" | "PATCH" | "PUT";
allowFail?: boolean;
jsonData?: any;
}): Promise<APIResponse> {