mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-05 23:47:41 +08:00
fix(transfer): 支持显式重新整理历史记录
This commit is contained in:
@@ -249,6 +249,19 @@ class ManualTransferItem(BaseModel):
|
||||
episode_group: Optional[str] = None
|
||||
# 仅预览,不执行整理
|
||||
preview: Optional[bool] = False
|
||||
# 重新整理,清理命中的成功历史及其旧目标
|
||||
reorganize: Optional[bool] = False
|
||||
|
||||
|
||||
class ManualTransferHistoryInfo(BaseModel):
|
||||
"""
|
||||
手动整理命中的成功历史摘要
|
||||
"""
|
||||
|
||||
# 是否应显示重新整理操作
|
||||
reorganize: bool = False
|
||||
# 命中的成功历史数量
|
||||
history_count: int = 0
|
||||
|
||||
|
||||
class ManualTransferTargetPath(BaseModel):
|
||||
|
||||
Reference in New Issue
Block a user