< Summary - Jellyfin

Information
Class: Jellyfin.Server.Implementations.ModelConfiguration.ActivityLogConfiguration
Assembly: Jellyfin.Server.Implementations
File(s): /srv/git/jellyfin/Jellyfin.Server.Implementations/ModelConfiguration/ActivityLogConfiguration.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 17
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/ActivityLogConfiguration.cs

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