feat: connect search and project settings

This commit is contained in:
2026-07-21 17:16:45 +08:00
parent bc1cd19c51
commit 110423406b
15 changed files with 825 additions and 139 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) {