This commit is contained in:
@@ -506,7 +506,7 @@ export default function initialize() {
|
|||||||
|
|
||||||
//NOTIFICATION CONFIG AND HISTORY
|
//NOTIFICATION CONFIG AND HISTORY
|
||||||
sub.push({
|
sub.push({
|
||||||
title: window.$gz.locale.get("NOTIFY CONFIG"),
|
title: window.$gz.locale.get("NOTIFY SETTINGS"),
|
||||||
icon: "bullhorn",
|
icon: "bullhorn",
|
||||||
route: "/notifysettings",
|
route: "/notifysettings",
|
||||||
key: key++
|
key: key++
|
||||||
|
|||||||
@@ -300,16 +300,69 @@ export default new Router({
|
|||||||
import(/* webpackChunkName: "administration" */ "./views/reports.vue")
|
import(/* webpackChunkName: "administration" */ "./views/reports.vue")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/files",
|
||||||
|
name: "files",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "administration" */ "./views/files.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/history",
|
||||||
|
name: "history",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "administration" */ "./views/files.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/kpi",
|
||||||
|
name: "kpi",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "administration" */ "./views/kpi.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/archives",
|
||||||
|
name: "archives",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "operations" */ "./views/archives.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/jobs",
|
||||||
|
name: "jobs",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "operations" */ "./views/jobs.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/serverlogs",
|
||||||
|
name: "serverlogs",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "operations" */ "./views/server-logs.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/metrics",
|
||||||
|
name: "metrics",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "operations" */ "./views/metrics.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
,
|
||||||
|
{
|
||||||
|
path: "/notifysettings",
|
||||||
|
name: "notifysettings",
|
||||||
|
component: () =>
|
||||||
|
import(/* webpackChunkName: "operations" */ "./views/notify-settings.vue")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
21
ayanova/src/views/archives.vue
Normal file
21
ayanova/src/views/archives.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "archive",
|
||||||
|
title: window.$gz.locale.get("ARCHIVE DATA"),
|
||||||
|
helpUrl: "user-form-archives"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/files.vue
Normal file
21
ayanova/src/views/files.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "folder",
|
||||||
|
title: window.$gz.locale.get("FILES MANAGER"),
|
||||||
|
helpUrl: "user-form-files-list"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/history.vue
Normal file
21
ayanova/src/views/history.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "history",
|
||||||
|
title: window.$gz.locale.get("HISTORY"),
|
||||||
|
helpUrl: "user-form-history"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/jobs.vue
Normal file
21
ayanova/src/views/jobs.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "robot",
|
||||||
|
title: window.$gz.locale.get("SERVER JOBS"),
|
||||||
|
helpUrl: "user-form-jobs"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/kpi.vue
Normal file
21
ayanova/src/views/kpi.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "chart-line",
|
||||||
|
title: window.$gz.locale.get("KPI CHARTS"),
|
||||||
|
helpUrl: "user-form-kpi"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/metrics.vue
Normal file
21
ayanova/src/views/metrics.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "file-medical-alt",
|
||||||
|
title: window.$gz.locale.get("SERVER METRICS"),
|
||||||
|
helpUrl: "user-form-server-metrics"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/notify-settings.vue
Normal file
21
ayanova/src/views/notify-settings.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "bullhorn",
|
||||||
|
title: window.$gz.locale.get("NOTIFY SETTINGS"),
|
||||||
|
helpUrl: "user-form-notify-settings"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
21
ayanova/src/views/server-logs.vue
Normal file
21
ayanova/src/views/server-logs.vue
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "history",
|
||||||
|
title: window.$gz.locale.get("Log"),
|
||||||
|
helpUrl: "user-form-server-logs"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user