2022-09-05 13:46:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$notificationLevel = ALERT;
|
2022-12-05 12:23:43 +01:00
|
|
|
$logLevel = NOTICE | WARNING | ERROR | ALERT;
|
|
|
|
//set the apiServer activ or not
|
|
|
|
$apiServerIsActive = true;
|
2022-09-05 13:46:41 +02:00
|
|
|
// le premier utilisateur est l'utilisateur par défaut
|
|
|
|
$defaultUser = array(
|
|
|
|
"rdc" => "Daniel",
|
|
|
|
"garage" => "Daniel",
|
|
|
|
"entree" => "Daniel",
|
|
|
|
"etage" => "Maryclaire"
|
|
|
|
);
|
|
|
|
|
|
|
|
?>
|