Display the list of administrators

This commit is contained in:
2021-05-15 09:37:32 +02:00
parent f38b4d663b
commit b4dc4cd45b
4 changed files with 103 additions and 1 deletions

View File

@ -90,6 +90,13 @@ export class AccountHelper {
});
}
/**
* Get the entire list of administrators
*/
static async GetAdminsList(): Promise<AdminAccount[]> {
return await serverRequest("accounts/list");
}
/**
* Attempt to refresh current account information
*/