233e23016c
- 文章 HTML 存储从文件系统迁移至 articles 表,删除 releases 目录 - 合规审查从 DB 读取 HTML,审查结果写回 DB,通过后自动推进至待发布 - 新增 todayCount 筛选按钮,与系统概览统计数据一致 - 全屏预览修复:提升 z-index 超过侧边栏,添加退出全屏/关闭按钮 - 统一 '优化' → '审查' 命名,消除前后端术语不一致 - 调度器创作完成后自动触发审查(生成 → 审查 → 待发布) - 清理旧备份/调试文件、过期大纲和研究笔记
31 lines
787 B
Python
31 lines
787 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
from pathlib import Path
|
|
from datetime import datetime
|
|
|
|
PROJECT_ROOT = Path(__file__).parent.parent
|
|
sys.path.insert(0, str(PROJECT_ROOT))
|
|
sys.path.insert(0, str(PROJECT_ROOT / 'platform' / 'backend'))
|
|
|
|
from app.database import SessionLocal
|
|
from app.models import Topic as DBTopic
|
|
|
|
def adjust(adjustments):
|
|
db = SessionLocal()
|
|
try:
|
|
for tid, new_score in adjustments.items():
|
|
topic = db.query(DBTopic).filter(DBTopic.id == tid).first()
|
|
if topic:
|
|
topic.priority_score = new_score
|
|
topic.updated_at = datetime.now()
|
|
db.commit()
|
|
finally:
|
|
db.close()
|
|
|
|
def main():
|
|
adjust({'D01': 12})
|
|
print("D01 priority_score set to 12")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|