Refactor bumper template background management: rename background upload endpoint to reflect new functionality, update related command and handler to use image ID instead of extension, and adjust data models to support image references. Remove obsolete background handling code and enhance UI components for improved image selection and display.
This commit is contained in:
@@ -44,7 +44,7 @@ public sealed class GetShowQueryHandler(IAppDbContext dbContext)
|
||||
e.Episode,
|
||||
e.Title,
|
||||
e.Overview,
|
||||
e.StillPath is not null,
|
||||
e.StillImageId,
|
||||
e.AirDate
|
||||
);
|
||||
})
|
||||
|
||||
@@ -25,7 +25,7 @@ public sealed record EpisodeDto(
|
||||
int? Episode,
|
||||
string? Title,
|
||||
string? Overview,
|
||||
bool HasStill,
|
||||
Guid? StillImageId,
|
||||
DateOnly? AirDate
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user