telegram-commerce/app/controllers/product/show.go

17 lines
430 B
Go
Raw Permalink Normal View History

2023-10-26 18:14:41 +00:00
package product
import (
"github.com/gin-gonic/gin"
"net/http"
"tel-commerce/ent"
"tel-commerce/ent/product"
)
func (controller ProductController) ShowProducts(ctx *gin.Context) {
if products, err := controller.Client.Product.Query().Order(ent.Asc(product.FieldID)).All(controller.Ctx); err != nil {
ctx.IndentedJSON(http.StatusInternalServerError, err.Error())
} else {
ctx.IndentedJSON(http.StatusOK, products)
}
}