From 73f9664fb04bdb24247a3d967b40684724ffd07c Mon Sep 17 00:00:00 2001 From: louis Date: Mon, 20 Jan 2025 16:50:43 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Make=20Description=20optional?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/api/tickers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/tickers.go b/internal/api/tickers.go index 0b44d349..c5c330ea 100644 --- a/internal/api/tickers.go +++ b/internal/api/tickers.go @@ -494,7 +494,7 @@ func updateTicker(t *storage.Ticker, c *gin.Context) error { var body struct { Domain string `json:"domain" binding:"required"` Title string `json:"title" binding:"required"` - Description string `json:"description" binding:"required"` + Description string `json:"description"` Active bool `json:"active"` Information struct { Author string `json:"author"`