Add option to include and exclude categories from the global update (#265)
This commit is contained in:
@@ -173,11 +173,18 @@ export interface IPartialChapter {
|
||||
lastPageRead: number;
|
||||
}
|
||||
|
||||
export enum IncludeInGlobalUpdate {
|
||||
EXCLUDE = 0,
|
||||
INCLUDE = 1,
|
||||
UNSET = -1,
|
||||
}
|
||||
|
||||
export interface ICategory {
|
||||
id: number;
|
||||
order: number;
|
||||
name: string;
|
||||
default: boolean;
|
||||
includeInUpdate: IncludeInGlobalUpdate;
|
||||
meta: Metadata;
|
||||
size: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user