mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-18 01:25:53 +08:00
fix: update UTC time format for consistency (#13471)
This commit is contained in:
parent
f48fa3e4e8
commit
0957119550
@ -50,8 +50,8 @@ class EnterpriseWorkspaceNoOwnerEmail(Resource):
|
|||||||
"plan": tenant.plan,
|
"plan": tenant.plan,
|
||||||
"status": tenant.status,
|
"status": tenant.status,
|
||||||
"custom_config": json.loads(tenant.custom_config) if tenant.custom_config else {},
|
"custom_config": json.loads(tenant.custom_config) if tenant.custom_config else {},
|
||||||
"created_at": tenant.created_at.isoformat() if tenant.created_at else None,
|
"created_at": tenant.created_at.isoformat() + "Z" if tenant.created_at else None,
|
||||||
"updated_at": tenant.updated_at.isoformat() if tenant.updated_at else None,
|
"updated_at": tenant.updated_at.isoformat() + "Z" if tenant.updated_at else None,
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user