rename to one trip

This commit is contained in:
Alexander Laevens
2022-11-26 00:25:22 -07:00
parent 839147e0b0
commit 25e1a42392
207 changed files with 8015 additions and 245 deletions

View File

@@ -39,7 +39,7 @@ class User {
);
}
static Future<User?> fetchUser() async {
static Future<User?> getMe() async {
String requestURL = "$baseURL/auth/users/me";
String token = TokenSingleton().getToken();
@@ -56,7 +56,7 @@ class User {
}
}
Future<User?> patch({
Future<User?> patchMe({
String? firstName,
String? lastName,
int? homegroup,