#29 fix: correct user endpoint to /api/users/me/

This commit is contained in:
mono
2026-03-14 22:30:10 -05:00
parent 0c31d21212
commit c9d019c918

View File

@@ -90,7 +90,7 @@ class DjangoApi {
} }
getCurrentUser() { getCurrentUser() {
const url = this.base + '/users/me/'; const url = this.base + '/api/users/me/';
return this.getRequest(url); return this.getRequest(url);
} }
} }