mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			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();
 | |
|         }
 | |
|     }
 | |
| }
 |