diff --git a/internal/server/dto/apps.go b/internal/server/dto/apps.go index f850d66..b22c6b7 100644 --- a/internal/server/dto/apps.go +++ b/internal/server/dto/apps.go @@ -267,9 +267,7 @@ type GetAppConfigResponse struct { type SetAppConfigRequest struct { Name string `json:"name" validate:"appName"` - // validate keys and values are alphanumeric - Config map[string]string `json:"config" validate:"dive,keys,alphanum,endkeys,alphanum"` - // Config map[string]string `json:"config"` + Config map[string]string `json:"config"` } type GetAppStorageRequest struct {