mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 00:05:26 +03:00
Move model configuration to its own classes
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using Jellyfin.Data.Entities.Security;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||||
|
||||
namespace Jellyfin.Server.Implementations.ModelConfiguration
|
||||
{
|
||||
/// <summary>
|
||||
/// FluentAPI configuration for the ApiKey entity.
|
||||
/// </summary>
|
||||
public class ApiKeyConfiguration : IEntityTypeConfiguration<ApiKey>
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public void Configure(EntityTypeBuilder<ApiKey> builder)
|
||||
{
|
||||
// Indexes
|
||||
|
||||
builder
|
||||
.HasIndex(entity => entity.AccessToken)
|
||||
.IsUnique();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user