mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
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 @@ class ServicesController extends Controller
|
||||||
'environment_name' => 'string|nullable',
|
'environment_name' => 'string|nullable',
|
||||||
'environment_uuid' => 'string|nullable',
|
'environment_uuid' => 'string|nullable',
|
||||||
'server_uuid' => 'string|required',
|
'server_uuid' => 'string|required',
|
||||||
'destination_uuid' => 'string',
|
'destination_uuid' => 'string|nullable',
|
||||||
'name' => 'string|max:255',
|
'name' => 'string|max:255',
|
||||||
'description' => 'string|nullable',
|
'description' => 'string|nullable',
|
||||||
'instant_deploy' => 'boolean',
|
'instant_deploy' => 'boolean',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue