mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Placeholder for circuit page
This commit is contained in:
parent
51b7c257a6
commit
5c2ab0fdd6
@ -1,5 +1,6 @@
|
||||
import { AccessPointPage } from './ap/ap';
|
||||
import { Auth } from './auth';
|
||||
import { CircuitPage } from './circuit/circuit';
|
||||
import { DashboardPage } from './dashboard/dashboard';
|
||||
import { LoginPage } from './login/login';
|
||||
import { Page } from './page';
|
||||
@ -82,6 +83,11 @@ export class SiteRouter {
|
||||
this.curentPage = new AccessPointPage(split[1]);
|
||||
break;
|
||||
}
|
||||
case "circuit": {
|
||||
this.currentAnchor = "circuit:" + split[1];
|
||||
this.curentPage = new CircuitPage(split[1]);
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
alert("I don't know how to go to: " + split[0].toLowerCase());
|
||||
this.goto("dashboard");
|
||||
|
Loading…
Reference in New Issue
Block a user