feat(sound_played): add sound play tracking and user statistics endpoints; enhance VLC service to record play events

This commit is contained in:
JSC
2025-07-03 21:50:17 +02:00
parent 97b998fd9e
commit c3b8205f83
4 changed files with 353 additions and 4 deletions

View File

@@ -13,6 +13,6 @@ def init_db(app):
migrate.init_app(app, db)
# Import models here to ensure they are registered with SQLAlchemy
from app.models import user, user_oauth # noqa: F401
from app.models import user, user_oauth, sound_played # noqa: F401
return db