logs
All checks were successful
/ Make image (push) Successful in 59s

This commit is contained in:
nquidox 2026-03-29 13:37:21 +03:00
parent 064ae1aeff
commit ecdc68eda2

View file

@ -252,7 +252,6 @@ func (co *controller) updateExtraData(c *gin.Context) {
// @Summary Delete merch
// @Description Marks merch and all its extra data as deleted by uuid.
// @Tags Merch
// @Accept json
// @Param uuid path string true "merch uuid"
// @Success 204
// @Failure 400 {object} responses.BadRequest
@ -381,6 +380,7 @@ func (co *controller) getChartsPrices(c *gin.Context) {
logErr(controllerLogHeader, err)
return
}
log.WithField("response", response).Debugf("%v %v get chart prices success", pkgLogHeader, controllerLogHeader)
c.JSON(http.StatusOK, response)
}
@ -419,6 +419,7 @@ func (co *controller) getDistinctPrices(c *gin.Context) {
c.Status(http.StatusNoContent)
return
}
log.WithField("response", response).Debugf("%v %v get distinct prices success", pkgLogHeader, controllerLogHeader)
c.JSON(http.StatusOK, response)
}