Share Stats about OIDC use

This commit is contained in:
Amelia 2025-07-06 14:39:05 +02:00
parent d2e1ca9078
commit b6bfc65bc4
4 changed files with 15 additions and 2 deletions

View file

@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using API.Data.Misc;
using API.Entities.Enums;
using API.Entities.Enums.Device;
namespace API.DTOs.Stats.V3;
@ -76,6 +77,10 @@ public sealed record UserStatV3
/// Roles for this user
/// </summary>
public ICollection<string> Roles { get; set; }
/// <summary>
/// Who manages the user (OIDC, Kavita)
/// </summary>
public AppUserOwner Owner { get; set; }
}