mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
e11e4349f9
Can be either automatically if the Accept header is "application/json" or suffixed with "json" extension, e.g. dev/check.json
16 lines
336 B
PHP
16 lines
336 B
PHP
<?php
|
|
|
|
class DevHealthController extends Controller {
|
|
|
|
public static $allowed_actions = array(
|
|
'index'
|
|
);
|
|
|
|
function index() {
|
|
$e = new EnvironmentChecker('health', 'Site health');
|
|
$e->init(''); //empty permission check, the "health" check does not require a permission check to run
|
|
$e->setErrorCode(404);
|
|
return $e;
|
|
}
|
|
}
|