This commit is contained in:
21
ayanova/src/views/change-pw.vue
Normal file
21
ayanova/src/views/change-pw.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: "language",
|
||||
title: window.$gz.locale.get("SetLoginPassword"),
|
||||
helpUrl: "user-form-change-pw"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/notify-subscriptions.vue
Normal file
21
ayanova/src/views/notify-subscriptions.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("NotifySubscriptionList"),
|
||||
helpUrl: "user-form-notify-subscriptions"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/user-locale.vue
Normal file
21
ayanova/src/views/user-locale.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: "language",
|
||||
title: window.$gz.locale.get("Locale"),
|
||||
helpUrl: "user-form-user-locale"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user