21 lines
589 B
C#
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();
|
|
}
|
|
}
|
|
}
|