diff --git a/endpoints/signup.post.py b/endpoints/signup.post.py index 0850a6b..b3483c8 100644 --- a/endpoints/signup.post.py +++ b/endpoints/signup.post.py @@ -16,17 +16,17 @@ router = APIRouter() async def get_playlist_songs( playlist_id: str = "playlist1" ): - """Fetch songs from a playlist""" + """Get songs from a playlist""" playlist = next((p for p in playlists if p["id"] == playlist_id), None) if not playlist: raise HTTPException(status_code=400, detail="Playlist not found") return { - "message": "Songs fetched successfully", + "message": "Songs retrieved successfully", "playlist_id": playlist_id, "songs": playlist["songs"], "features": { "total_songs": len(playlist["songs"]), - "can_shuffle": True + "shuffled": False } } \ No newline at end of file