From d067b1d34feed6e857292b3174f46f9a40000005 Mon Sep 17 00:00:00 2001 From: Dinesh Salunke Date: Sun, 22 Sep 2024 11:59:41 +0530 Subject: [PATCH] refactor: add BoardType to TemplateType property --- modules/structs/project.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/structs/project.go b/modules/structs/project.go index 46e7bebfcd9..26f23d6fd67 100644 --- a/modules/structs/project.go +++ b/modules/structs/project.go @@ -25,11 +25,11 @@ type UpdateProjectPayload struct { // swagger:model type Project struct { - ID int64 `json:"id"` - Title string `json:"title"` - Description string `json:"description"` - BoardType uint8 `json:"board_type"` - IsClosed bool `json:"is_closed"` + ID int64 `json:"id"` + Title string `json:"title"` + Description string `json:"description"` + TemplateType uint8 `json:"board_type"` + IsClosed bool `json:"is_closed"` // swagger:strfmt date-time Created time.Time `json:"created_at"` // swagger:strfmt date-time