Move category methods to ChainBase and use consistent naming

Co-authored-by: jxxghp <51039935+jxxghp@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-26 04:32:11 +00:00
parent 5d3443fee4
commit 2883ccbe87
3 changed files with 14 additions and 14 deletions

View File

@@ -13,7 +13,7 @@ def get_category_config(_: User = Depends(get_current_active_user)):
"""
获取分类策略配置
"""
config = TmdbChain().load_category_config()
config = TmdbChain().category_config()
return schemas.Response(success=True, data=config.model_dump())