feat: connect search and project settings

This commit is contained in:
2026-07-21 17:16:45 +08:00
parent 2275d388a7
commit 000de4bcdb
14 changed files with 698 additions and 141 deletions

View File

@@ -99,7 +99,12 @@ func (h *Handler) updateProject(c *gin.Context) {
writeProjectError(c, err)
return
}
c.Status(http.StatusNoContent)
project, err := h.service.GetProject(userID, identity)
if err != nil {
writeProjectError(c, err)
return
}
c.JSON(http.StatusOK, project)
}
func (h *Handler) workspace(c *gin.Context) {