< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.ModelConfiguration.ApiKeyConfiguration
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/ModelConfiguration/ApiKeyConfiguration.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 20
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
Configure(...)100%11100%

File(s)

/srv/git/jellyfin/Jellyfin.Server.Implementations/ModelConfiguration/ApiKeyConfiguration.cs

#LineLine coverage
 1using Jellyfin.Data.Entities.Security;
 2using Microsoft.EntityFrameworkCore;
 3using Microsoft.EntityFrameworkCore.Metadata.Builders;
 4
 5namespace Jellyfin.Server.Implementations.ModelConfiguration
 6{
 7    /// <summary>
 8    /// FluentAPI configuration for the ApiKey entity.
 9    /// </summary>
 10    public class ApiKeyConfiguration : IEntityTypeConfiguration<ApiKey>
 11    {
 12        /// <inheritdoc/>
 13        public void Configure(EntityTypeBuilder<ApiKey> builder)
 14        {
 115            builder
 116                .HasIndex(entity => entity.AccessToken)
 117                .IsUnique();
 118        }
 19    }
 20}