Fix validation schema
This commit is contained in:
parent
7618f306bd
commit
95d605c1e3
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ class Egg extends Model
|
||||||
'uuid' => 'required|string|size:36',
|
'uuid' => 'required|string|size:36',
|
||||||
'name' => 'required|string|max:191',
|
'name' => 'required|string|max:191',
|
||||||
'description' => 'string|nullable',
|
'description' => 'string|nullable',
|
||||||
'features' => 'json|nullable',
|
'features' => 'array|nullable',
|
||||||
'author' => 'required|string|email',
|
'author' => 'required|string|email',
|
||||||
'docker_image' => 'required|string|max:191',
|
'docker_image' => 'required|string|max:191',
|
||||||
'startup' => 'required|nullable|string',
|
'startup' => 'required|nullable|string',
|
||||||
|
|
Loading…
Reference in a new issue