summaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-04-28 15:28:17 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-04-28 15:28:17 +0300
commit6b73ccbfeb4dd2bab907e6226e0655de99a56e13 (patch)
treea150912d797c0be22a8bdf4950cd1ad1c8d8ee73 /src/router
parent3f9ce4eaf391733e8769caec8da84302c012b21e (diff)
downloadwebui-vue-6b73ccbfeb4dd2bab907e6226e0655de99a56e13.tar.xz
restyled header and add subheader
Diffstat (limited to 'src/router')
-rw-r--r--src/router/routes.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/router/routes.js b/src/router/routes.js
index 3cbdabce..5703e62a 100644
--- a/src/router/routes.js
+++ b/src/router/routes.js
@@ -29,6 +29,9 @@ import ServerPowerOperations from '@/views/Operations/ServerPowerOperations';
import Certificates from '@/views/SecurityAndAccess/Certificates';
import VirtualMedia from '@/views/Operations/VirtualMedia';
import Power from '@/views/ResourceManagement/Power';
+import InformationAndFAQ from '@/views/InformationAndFAQ';
+import Support from '@/views/Support';
+
import i18n from '@/i18n';
const routes = [
@@ -176,6 +179,22 @@ const routes = [
},
},
{
+ path: '/information-and-faq',
+ name: 'information-and-faq',
+ component: InformationAndFAQ,
+ meta: {
+ title: i18n.t('appPageTitle.informationAndFAQ'),
+ },
+ },
+ {
+ path: '/support',
+ name: 'support',
+ component: Support,
+ meta: {
+ title: i18n.t('appPageTitle.support'),
+ },
+ },
+ {
path: '/settings/date-time',
name: 'date-time',
component: DateTime,