Update project schema and fix tests

This commit is contained in:
grossmj 2026-02-22 18:13:08 +08:00
parent 8ab34924b5
commit be4b87e8cd
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7
3 changed files with 4 additions and 4 deletions

View File

@ -123,8 +123,7 @@ async def create_project(
controller = Controller.instance()
project_dict = jsonable_encoder(project_data, exclude_unset=True)
if "created_by" not in project_dict:
project_dict["created_by"] = current_user.username
project_dict["created_by"] = current_user.username
project = await controller.add_project(**project_dict)
return project.asdict()

View File

@ -64,7 +64,6 @@ class ProjectBase(BaseModel):
show_interface_labels: Optional[bool] = Field(None, description="Show interface labels on the drawing area")
supplier: Optional[Supplier] = Field(None, description="Supplier of the project")
variables: Optional[List[Variable]] = Field(None, description="Variables required to run the project")
created_by: Optional[str] = Field(None, description="Username of the user who created the project")
class ProjectCreate(ProjectBase):
@ -97,6 +96,7 @@ class Project(ProjectBase):
name: Optional[str] = None
status: Optional[ProjectStatus] = None
filename: Optional[str] = None
created_by: Optional[str] = Field(None, description="Username of the user who created the project")
class ProjectFile(BaseModel):

View File

@ -59,7 +59,8 @@ async def test_project_to_topology_empty(tmpdir):
"type": "topology",
"supplier": None,
"variables": None,
"version": __version__
"version": __version__,
"created_by": None
}