浏览代码

fix: update UTC time format for consistency (#13471)

tags/1.0.0
Xin Zhang 8 个月前
父节点
当前提交
0957119550
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      api/controllers/inner_api/workspace/workspace.py

+ 2
- 2
api/controllers/inner_api/workspace/workspace.py 查看文件

@@ -50,8 +50,8 @@ class EnterpriseWorkspaceNoOwnerEmail(Resource):
"plan": tenant.plan,
"status": tenant.status,
"custom_config": json.loads(tenant.custom_config) if tenant.custom_config else {},
"created_at": tenant.created_at.isoformat() if tenant.created_at else None,
"updated_at": tenant.updated_at.isoformat() if tenant.updated_at else None,
"created_at": tenant.created_at.isoformat() + "Z" if tenant.created_at else None,
"updated_at": tenant.updated_at.isoformat() + "Z" if tenant.updated_at else None,
}

return {

正在加载...
取消
保存