Add deployment logs button to Telegram

notification
This commit is contained in:
Andras Bacsai 2023-11-08 14:37:01 +01:00
parent 8e5e36dd5b
commit 51423394ba

View File

@ -84,11 +84,14 @@ class DeploymentFailed extends Notification implements ShouldQueue
} else {
$message = 'Coolify: Deployment failed of **' . $this->application_name . '** (' . $this->fqdn . '): ';
}
$buttons[] = [
"text" => "Deployment logs",
"url" => $this->deployment_url
];
return [
"message" => $message,
"buttons" => [
"text" => "View Deployment Logs",
"url" => $this->deployment_url
...$buttons
],
];
}