introduce tag exclusion

This commit is contained in:
lightling 2025-04-19 17:22:43 -04:00
parent 9d919bfb0a
commit 246d352761
Signed by: lightling
GPG key ID: F1F29650D537C773
6 changed files with 31 additions and 3 deletions

View file

@ -32,6 +32,15 @@ export type ListWithEntries<T> = {
* Entries that are embedded directly in the list config
*/
embeddedEntries?: ListEntries<T>
/**
* Array of `tag.tagId`s that will be excluded from global tags for a given media list
*/
excludeTags: string[]
/**
* Array of `tag.category` that will be excluded from global tags for a given media list;
* to exclude tags without categories given, add `'NoCategory'` to this array.
*/
excludeTagCategories: string[]
}
/**