Wipe data from song queue #135

Merged
kdeng00 merged 8 commits from wipe_data_from_song_queue into v0.2 2025-05-25 21:12:17 -04:00
Showing only changes of commit 145247c9ff - Show all commits
+1 -1
View File
@@ -816,7 +816,7 @@ pub mod endpoint {
Ok(song_queue) => {
match super::song_queue::wipe_data(&pool, &song_queue.id).await {
Ok(wiped_id) => {
response.message = "Success";
response.message = String::from("Success");
response.data.push(wiped_id);
(axum::http::StatusCode::OK, axum::Json(response))