mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
23 lines
492 B
PHP
23 lines
492 B
PHP
|
<?php
|
||
|
namespace App\Http\Controllers;
|
||
|
|
||
|
use Illuminate\Routing\Controller as BaseController;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* This controller provide the healthz route for
|
||
|
* the Snipe-IT Asset Management application.
|
||
|
*
|
||
|
* @version v1.0
|
||
|
*/
|
||
|
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"
|
||
|
]);
|
||
|
}
|
||
|
}
|