Misc bunch of changes (#2815)
This commit is contained in:
parent
18792b7b56
commit
63c9bff32e
81 changed files with 4567 additions and 339 deletions
|
|
@ -63,6 +63,15 @@ public class AppUser : IdentityUser<int>, IHasConcurrencyToken
|
|||
/// <remarks>Requires Kavita+ Subscription</remarks>
|
||||
public string? AniListAccessToken { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The Username of the MAL user
|
||||
/// </summary>
|
||||
public string? MalUserName { get; set; }
|
||||
/// <summary>
|
||||
/// The Client ID for the user's MAL account. User should create a client on MAL for this.
|
||||
/// </summary>
|
||||
public string? MalAccessToken { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// A list of Series the user doesn't want scrobbling for
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using API.Entities.Metadata;
|
||||
using API.Services.Plus;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace API.Entities;
|
||||
|
|
@ -41,6 +43,21 @@ public class CollectionTag
|
|||
|
||||
public ICollection<SeriesMetadata> SeriesMetadatas { get; set; } = null!;
|
||||
|
||||
/// <summary>
|
||||
/// Is this Collection tag managed by another system, like Kavita+
|
||||
/// </summary>
|
||||
//public bool IsManaged { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// The last time this Collection was Synchronized. Only applicable for Managed Tags.
|
||||
/// </summary>
|
||||
//public DateTime LastSynchronized { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Who created this Collection (Kavita, or external services)
|
||||
/// </summary>
|
||||
//public ScrobbleProvider Provider { get; set; } = ScrobbleProvider.Kavita;
|
||||
|
||||
/// <summary>
|
||||
/// Not Used due to not using concurrency update
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue