feat: change ALLOW_CREATE_WORKSPACE false

This commit is contained in:
Joe
2024-09-29 21:55:17 +08:00
parent 5165894b1a
commit 91d3e43b11

View File

@ -630,7 +630,7 @@ class LoginConfig(BaseSettings):
) )
ALLOW_CREATE_WORKSPACE: bool = Field( ALLOW_CREATE_WORKSPACE: bool = Field(
description="whether to enable create workspace", description="whether to enable create workspace",
default=True, default=False,
) )