Update code in endpoints/playlist.get.py
This commit is contained in:
parent
50f3404602
commit
e86868fdde
@ -1,19 +1,19 @@
|
||||
# Entity: Song
|
||||
# Entity: Playlist
|
||||
|
||||
from fastapi import APIRouter, Depends, HTTPException, status
|
||||
from sqlalchemy.orm import Session
|
||||
from typing import List
|
||||
from core.database import get_db
|
||||
from models.song import Song
|
||||
from schemas.song import SongSchema
|
||||
from helpers.song_helpers import get_all_songs
|
||||
from models.playlist import Playlist
|
||||
from schemas.playlist import PlaylistSchema
|
||||
from helpers.playlist_helpers import get_playlist_songs
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@router.get("/playlist", status_code=200, response_model=List[SongSchema])
|
||||
async def get_playlist(
|
||||
@router.get("/playlist", response_model=List[PlaylistSchema], status_code=200)
|
||||
async def get_playlist_songs(
|
||||
db: Session = Depends(get_db)
|
||||
):
|
||||
"""Get all songs from library"""
|
||||
songs = get_all_songs(db)
|
||||
"""Get all songs from playlist"""
|
||||
songs = get_playlist_songs(db)
|
||||
return songs
|
Loading…
x
Reference in New Issue
Block a user