mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 05:54:15 -04:00
* Recreated Kavita Logging with Serilog instead of Default. This needs to be move out of the appsettings now, to allow auto updater to patch. * Refactored the code to be completely configured via Code rather than appsettings.json. This is a required step for Auto Updating. * Added in the ability to send logs directly to the UI only for users on the log route. Stopping implementation as Alerts page will handle the rest of the implementation. * Fixed up the backup service to not rely on Config from appsettings.json * Tweaked the Logging levels available * Moved everything over to File-scoped namespaces * Moved everything over to File-scoped namespaces * Code cleanup, removed an old migration and changed so debug logging doesn't print sensitive db data * Removed dead code
57 lines
1.7 KiB
C#
57 lines
1.7 KiB
C#
using System.Collections.Generic;
|
|
using API.Entities.Metadata;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Entities;
|
|
|
|
/// <summary>
|
|
/// Represents a user entered field that is used as a tagging and grouping mechanism
|
|
/// </summary>
|
|
[Index(nameof(Id), nameof(Promoted), IsUnique = true)]
|
|
public class CollectionTag
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// Visible title of the Tag
|
|
/// </summary>
|
|
public string Title { get; set; }
|
|
/// <summary>
|
|
/// Absolute path to the (managed) image file
|
|
/// </summary>
|
|
/// <remarks>The file is managed internally to Kavita's APPDIR</remarks>
|
|
public string CoverImage { get; set; }
|
|
/// <summary>
|
|
/// Denotes if the CoverImage has been overridden by the user. If so, it will not be updated during normal scan operations.
|
|
/// </summary>
|
|
public bool CoverImageLocked { get; set; }
|
|
|
|
/// <summary>
|
|
/// A description of the tag
|
|
/// </summary>
|
|
public string Summary { get; set; }
|
|
|
|
/// <summary>
|
|
/// A normalized string used to check if the tag already exists in the DB
|
|
/// </summary>
|
|
public string NormalizedTitle { get; set; }
|
|
/// <summary>
|
|
/// A promoted collection tag will allow all linked seriesMetadata's Series to show for all users.
|
|
/// </summary>
|
|
public bool Promoted { get; set; }
|
|
|
|
public ICollection<SeriesMetadata> SeriesMetadatas { get; set; }
|
|
|
|
/// <summary>
|
|
/// Not Used due to not using concurrency update
|
|
/// </summary>
|
|
public uint RowVersion { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Not Used due to not using concurrency update
|
|
/// </summary>
|
|
public void OnSavingChanges()
|
|
{
|
|
RowVersion++;
|
|
}
|
|
}
|