3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-06 22:25:43 +00:00
Files
snipe-it/app/Http/Controllers/HealthController.php
2024-07-04 20:49:22 +01:00

28 lines
541 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Routing\Controller as BaseController;
/**
* This controller provide the health route for
* the Snipe-IT Asset Management application.
*
* @version v1.0
*
* @return \Illuminate\Http\JsonResponse
*/
class HealthController extends BaseController
{
/**
* Returns a fixed JSON content ({ "status": "ok"}) which indicate the app is up and running
*/
public function get()
{
return response()->json([
'status' => 'ok',
]);
}
}