mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-28 02:22:37 -04:00
Automatic Collection Creation (#1768)
* Made the unread badges slightly smaller and rounded on top right. * A bit more tweaks on the not read badges. Looking really nice now. * In order to start the work on managing collections from ScanLoop, I needed to refactor collection apis into the service layer and add unit tests. Removed ToUpper Normalization for new tags. * Hooked up ability to auto generate collections from SeriesGroup metadata tag.
This commit is contained in:
@@ -1,17 +1,28 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using API.Entities.Enums;
|
||||
|
||||
namespace API.DTOs;
|
||||
|
||||
public class UpdateLibraryDto
|
||||
{
|
||||
[Required]
|
||||
public int Id { get; init; }
|
||||
[Required]
|
||||
public string Name { get; init; }
|
||||
[Required]
|
||||
public LibraryType Type { get; set; }
|
||||
[Required]
|
||||
public IEnumerable<string> Folders { get; init; }
|
||||
[Required]
|
||||
public bool FolderWatching { get; init; }
|
||||
[Required]
|
||||
public bool IncludeInDashboard { get; init; }
|
||||
[Required]
|
||||
public bool IncludeInRecommended { get; init; }
|
||||
[Required]
|
||||
public bool IncludeInSearch { get; init; }
|
||||
[Required]
|
||||
public bool CreateCollections { get; init; }
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user