Realms creation

This commit is contained in:
2024-05-28 22:13:23 +08:00
parent 99f3211151
commit c50a49f37d
8 changed files with 514 additions and 97 deletions

View File

@ -11,7 +11,7 @@ class RealmProvider extends GetxController {
client.httpClient.baseUrl = ServiceFinder.services['passport'];
client.httpClient.addAuthenticator(auth.requestAuthenticator);
final resp = await client.get('/realms/me/available');
final resp = await client.get('/api/realms/me/available');
if (resp.statusCode != 200) {
throw Exception(resp.bodyString);
}