From 84501cfc0047f89a42905c7421f1768fbd6a16ce Mon Sep 17 00:00:00 2001 From: Dag Date: Wed, 5 Jul 2023 05:41:20 +0200 Subject: [PATCH] feat: add health check action (#3484) --- actions/HealthAction.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 actions/HealthAction.php diff --git a/actions/HealthAction.php b/actions/HealthAction.php new file mode 100644 index 00000000..8ae5df1b --- /dev/null +++ b/actions/HealthAction.php @@ -0,0 +1,15 @@ + 200, + 'message' => 'all is good', + ]; + return new Response(Json::encode($response), 200, ['content-type' => 'application/json']); + } +}