feat: implement custom config

This commit is contained in:
shinya
2025-07-31 01:07:59 +08:00
parent fc24055bdc
commit 7b6867ed58
13 changed files with 967 additions and 49 deletions

View File

@@ -23,6 +23,13 @@ export interface AdminConfig {
from: 'config' | 'custom';
disabled?: boolean;
}[];
CustomCategories: {
name?: string;
type: 'movie' | 'tv';
query: string;
from: 'config' | 'custom';
disabled?: boolean;
}[];
}
export interface AdminConfigResult {