Implement episode metadata management: add functionality to refresh episode metadata from external sources, including new API endpoints and UI integration. Enhance Show and Episode models to support additional metadata fields, and update database schema accordingly. Update ShowDetail and ShowMetadataCard components to display refreshed episode information and provide user feedback on metadata updates.
This commit is contained in:
@@ -39,7 +39,13 @@ public sealed class GetShowQueryHandler(IAppDbContext dbContext)
|
||||
e.Position,
|
||||
asset?.OriginalFileName,
|
||||
asset?.Status,
|
||||
asset?.Duration?.TotalSeconds
|
||||
asset?.Duration?.TotalSeconds,
|
||||
e.Season,
|
||||
e.Episode,
|
||||
e.Title,
|
||||
e.Overview,
|
||||
e.StillPath is not null,
|
||||
e.AirDate
|
||||
);
|
||||
})
|
||||
.ToList();
|
||||
|
||||
Reference in New Issue
Block a user