More torrent and omdb
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Elias Jansson
2025-08-20 00:39:19 +02:00
parent 146c557c25
commit 6b19f08d6b
12 changed files with 1703 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
using Aberwyn.Models;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using System.Reflection.Emit;
namespace Aberwyn.Data
{
@@ -34,6 +35,8 @@ namespace Aberwyn.Data
DisplayOrder = 1
}
);
builder.Entity<TorrentItem>()
.OwnsOne(t => t.Metadata);
}