Skip to content

Commit c3b6b7a

Browse files
author
Andrei Neagu
committed
fixed required missing fiedl form ProjectsAtDB
1 parent 37c779d commit c3b6b7a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

packages/models-library/src/models_library/projects.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@ class ProjectAtDB(BaseProjectModel):
114114
project_type: Annotated[
115115
ProjectType, Field(alias="type", description="The project type")
116116
]
117+
template_type: Annotated[
118+
ProjectTemplateType | None,
119+
Field(
120+
alias="templateType",
121+
description="The project template type",
122+
examples=["TEMPLATE", "TUTORIAL", "HYPERTOOL"],
123+
),
124+
]
117125

118126
prj_owner: Annotated[int | None, Field(description="The project owner id")]
119127

0 commit comments

Comments
 (0)