Dolls with friends (pt 1)

This commit is contained in:
2025-12-20 02:47:47 +08:00
parent 1c7b518e73
commit 9f41829d0e
2 changed files with 48 additions and 1 deletions

View File

@@ -82,7 +82,7 @@ impl DollsRemote {
}
pub async fn get_dolls(&self) -> Result<Vec<DollDto>, RemoteError> {
let url = format!("{}/dolls", self.base_url);
let url = format!("{}/dolls/me", self.base_url);
tracing::info!("DollsRemote::get_dolls - Sending GET request to URL: {}", url);
let resp = with_auth(self.client.get(url)).await.send().await?;