* properly scope jellyfin disconnect * add emby entities * add emby media source page * add emby media source editor * sync emby libraries * enable emby library sync toggle * add emby path replacements editor * add emby movie synchronization * fix emby artwork * sync emby television * code cleanup * add jellyfin/emby address placeholder * tweak jellyfin/emby address form
13 lines
425 B
C#
13 lines
425 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations
|
|
{
|
|
public class EmbyPathReplacementConfiguration : IEntityTypeConfiguration<EmbyPathReplacement>
|
|
{
|
|
public void Configure(EntityTypeBuilder<EmbyPathReplacement> builder) =>
|
|
builder.ToTable("EmbyPathReplacement");
|
|
}
|
|
}
|