fix(api): allow nullable destination_uuid (#5683)
Allow nullable destination_uuid in upsert_service.
This commit is contained in:
parent
dae955a7a2
commit
4d2d6b3a7c
1 changed files with 1 additions and 1 deletions
|
|
@ -631,7 +631,7 @@ private function upsert_service(Request $request, Service $service, string $team
|
|||
'environment_name' => 'string|nullable',
|
||||
'environment_uuid' => 'string|nullable',
|
||||
'server_uuid' => 'string|required',
|
||||
'destination_uuid' => 'string',
|
||||
'destination_uuid' => 'string|nullable',
|
||||
'name' => 'string|max:255',
|
||||
'description' => 'string|nullable',
|
||||
'instant_deploy' => 'boolean',
|
||||
|
|
|
|||
Loading…
Reference in a new issue