fix: handle interface{} type in settings update request
Build and Push Docker Image / build-and-push (push) Successful in 1m1s
Build and Push Docker Image / deploy (push) Successful in 9s

This commit is contained in:
nuyue
2026-07-16 16:23:10 +08:00
parent b99906ee2d
commit e4ec378237
2 changed files with 18 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package schemas
type UpdateSettingsRequest struct {
Settings map[string]string `json:"settings" binding:"required"`
Settings map[string]interface{} `json:"settings" binding:"required"`
}
type AuthorizeSupplierRequest struct {