feat: 更新 Dockerfile 和 docker-compose.yml,使用清华镜像源,升级 CVAT 版本,优化环境配置
fix: 清理飞书配置占位符,增强错误处理,确保前端不暴露内部错误信息 feat: 在标注服务中添加上传错误处理,优化 CVAT 状态查询 feat: 更新 AnnotationPage 以显示上传状态和错误信息,增强用户体验 feat: 登录页面添加重定向功能,优化用户登录流程 refactor: 删除 tsconfig.tsbuildinfo 文件,清理不必要的构建信息
This commit is contained in:
@@ -29,7 +29,10 @@ STATE_EXPIRE_MINUTES = 10
|
||||
|
||||
|
||||
def is_feishu_configured() -> bool:
|
||||
return bool(FEISHU_APP_ID and FEISHU_APP_SECRET)
|
||||
"""飞书是否已配置真实 App ID/Secret(排除占位符)。"""
|
||||
if not FEISHU_APP_ID or not FEISHU_APP_SECRET:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
||||
def build_authorize_url() -> tuple[str, str]:
|
||||
|
||||
Reference in New Issue
Block a user