Files
raven-client/ayanova/src/views/ops-notification-settings.vue
2020-06-07 18:13:56 +00:00

25 lines
507 B
Vue

<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-bullhorn",
title: this.$ay.t("NotificationSettings"),
helpUrl: "form-ops-notification-settings",
formData: {
ayaType: window.$gz.type.NotificationSubscription
}
});
}
};
</script>