fix(api): allow nullable destination_uuid (#5683)

Allow nullable destination_uuid in upsert_service.
This commit is contained in:
Meghea Iulian 2025-05-13 12:55:18 +03:00 committed by GitHub
parent dae955a7a2
commit 4d2d6b3a7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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',