Files
raven-client/ayanova/src/views/home-notify-subscriptions.vue
2020-06-07 18:13:56 +00:00

25 lines
509 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("NotifySubscriptionList"),
helpUrl: "form-home-notify-subscriptions",
formData: {
ayaType: window.$gz.type.NotificationSubscription
}
});
}
};
</script>