Files
raven-client/ayanova/src/views/ops-notification-settings.vue
2020-07-10 13:25:39 +00:00

25 lines
489 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: "NotificationSettings",
helpUrl: "form-ops-notification-settings",
formData: {
ayaType: window.$gz.type.NotifySubscription
}
});
}
};
</script>