mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
21 lines
375 B
PHP
21 lines
375 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class LegacyController extends Controller
|
|
{
|
|
public function index($path = '')
|
|
{
|
|
ob_start();
|
|
include base_path('html/legacy_index.php');
|
|
$html = ob_get_clean();
|
|
|
|
return response($html);
|
|
}
|
|
|
|
public function api($path = '')
|
|
{
|
|
include base_path('html/legacy_api_v0.php');
|
|
}
|
|
}
|