Wipe data from song queue #35

Merged
phoenix merged 6 commits from wipe_data_from_song_queue into devel 2025-07-15 19:49:25 +00:00
Showing only changes of commit 47a1c5e8fb - Show all commits

View File

@@ -85,7 +85,7 @@ pub mod wipe_data {
let payload = serde_json::json!({
"song_queue_id": song_queue_id
});
let request = client.post(url).json(&payload);
let request = client.patch(url).json(&payload);
request.send().await
}