From 95d605c1e399c6f20e0b9dbb3a7f57e6e3ec6531 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Mon, 2 Nov 2020 20:24:11 -0800 Subject: [PATCH] Fix validation schema --- app/Models/Egg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Egg.php b/app/Models/Egg.php index dd133380a..ce2b52c0c 100644 --- a/app/Models/Egg.php +++ b/app/Models/Egg.php @@ -111,7 +111,7 @@ class Egg extends Model 'uuid' => 'required|string|size:36', 'name' => 'required|string|max:191', 'description' => 'string|nullable', - 'features' => 'json|nullable', + 'features' => 'array|nullable', 'author' => 'required|string|email', 'docker_image' => 'required|string|max:191', 'startup' => 'required|nullable|string',