mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-03-01 10:31:47 +00:00
19 lines
293 B
PHP
19 lines
293 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'includes/functions.php';
|
||
|
require_once 'config.php';
|
||
|
|
||
|
/**
|
||
|
* Handler for RaspAP's RestAPI settings
|
||
|
*/
|
||
|
function DisplayRestAPI()
|
||
|
{
|
||
|
$status = new \RaspAP\Messages\StatusMessage;
|
||
|
|
||
|
|
||
|
echo renderTemplate("restapi", compact(
|
||
|
"status",
|
||
|
"apiKey",
|
||
|
));
|
||
|
}
|