fix(api): return deployment UUID strings directly

This commit is contained in:
Andras Bacsai
2026-07-03 11:31:49 +02:00
parent 8ce054c10c
commit 29c122b31a
6 changed files with 118 additions and 10 deletions
+1 -1
View File
@@ -148,7 +148,7 @@ class Gitea extends Controller
'mode' => 'manual',
'application_uuid' => $application->uuid,
'application_name' => $application->name,
'deployment_uuid' => $deployment_uuid->toString(),
'deployment_uuid' => $deployment_uuid,
'commit' => data_get($payload, 'after'),
'repository' => $full_name ?? null,
]);