.kavitaignore no more (#2442)
This commit is contained in:
parent
cd27efecdd
commit
7221501c4d
91 changed files with 5968 additions and 1026 deletions
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using API.Entities.Enums;
|
||||
|
||||
|
@ -51,4 +52,12 @@ public class LibraryDto
|
|||
/// When showing series, only parent series or series with no relationships will be returned
|
||||
/// </summary>
|
||||
public bool CollapseSeriesRelationships { get; set; } = false;
|
||||
/// <summary>
|
||||
/// The types of file type groups the library will scan for
|
||||
/// </summary>
|
||||
public ICollection<FileTypeGroup> LibraryFileTypes { get; set; }
|
||||
/// <summary>
|
||||
/// A set of globs that will exclude matching content from being scanned
|
||||
/// </summary>
|
||||
public ICollection<string> ExcludePatterns { get; set; }
|
||||
}
|
||||
|
|
|
@ -28,4 +28,13 @@ public class UpdateLibraryDto
|
|||
public bool ManageReadingLists { get; init; }
|
||||
[Required]
|
||||
public bool AllowScrobbling { get; init; }
|
||||
/// <summary>
|
||||
/// What types of files to allow the scanner to pickup
|
||||
/// </summary>
|
||||
[Required]
|
||||
public ICollection<FileTypeGroup> FileGroupTypes { get; init; }
|
||||
/// <summary>
|
||||
/// A set of Glob patterns that the scanner will exclude processing
|
||||
/// </summary>
|
||||
public ICollection<string> ExcludePatterns { get; init; }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue