2021-05-01 14:41:22 +05:30
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-04-09 14:21:43 +05:30
|
|
|
import {Router} from './router';
|
|
|
|
|
2021-05-06 13:48:28 +05:30
|
|
|
import * as login from './auth/login/ts/';
|
|
|
|
import * as register from './auth/register/ts/';
|
|
|
|
import * as panel from './panel/ts/index';
|
|
|
|
import * as addSiteKey from './panel/sitekey/add/ts';
|
2021-05-03 20:24:03 +05:30
|
|
|
|
|
|
|
import VIEWS from './views/v1/routes';
|
|
|
|
|
2021-05-06 13:48:28 +05:30
|
|
|
import './auth/css/forms.scss';
|
|
|
|
import './panel/css/main.scss';
|
2021-05-03 20:24:03 +05:30
|
|
|
import './panel/header/sidebar/main.scss';
|
|
|
|
import './panel/taskbar/main.scss';
|
|
|
|
import './panel/help-banner/main.scss';
|
2021-05-06 13:48:28 +05:30
|
|
|
import './panel/sitekey/add/css/main.scss';
|
|
|
|
import './panel/sitekey/list/css/main.scss';
|
2021-05-05 12:57:05 +05:30
|
|
|
|
2021-05-04 18:34:36 +05:30
|
|
|
import './errors/main.scss';
|
2021-05-01 11:28:39 +05:30
|
|
|
|
2021-04-09 14:21:43 +05:30
|
|
|
const router = new Router();
|
|
|
|
|
2021-05-01 11:28:39 +05:30
|
|
|
router.register(VIEWS.panelHome, panel.index);
|
|
|
|
router.register(VIEWS.registerUser, register.index);
|
|
|
|
router.register(VIEWS.loginUser, login.index);
|
2021-05-01 14:41:22 +05:30
|
|
|
router.register(VIEWS.addSiteKey, addSiteKey.index);
|
2021-04-09 14:21:43 +05:30
|
|
|
|
|
|
|
router.route();
|