jellyfin/Jellyfin.Server.Implementations/ModelConfiguration/ApiKeyConfiguration.cs
2021-09-07 19:25:04 +02:00

21 lines
589 B
C#

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)
{
builder
.HasIndex(entity => entity.AccessToken)
.IsUnique();
}
}
}