mirror of
https://github.com/StepanovPlaton/torrent_backend.git
synced 2026-04-03 20:30:38 +04:00
Code refactoring. Add support genres and actors to routes
This commit is contained in:
19
database/crud/audiobook_genres.py
Normal file
19
database/crud/audiobook_genres.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from time import strftime
|
||||
from sqlalchemy.ext.asyncio import AsyncSession
|
||||
|
||||
from database.database import Database, EntityCRUD
|
||||
|
||||
from .. import models as mdl
|
||||
from .. import schemas as sch
|
||||
|
||||
|
||||
class AudiobookGenresCRUD(EntityCRUD[mdl.AudiobookGenre]):
|
||||
@staticmethod
|
||||
async def get_all(db: AsyncSession):
|
||||
return await Database.get_all(db, mdl.AudiobookGenre)
|
||||
|
||||
@staticmethod
|
||||
async def add(db: AsyncSession,
|
||||
info: sch.AudiobookGenreCreate):
|
||||
audiobook_genre = mdl.AudiobookGenre(**info.model_dump())
|
||||
return await Database.add(db, audiobook_genre)
|
||||
Reference in New Issue
Block a user