This commit is contained in:
@@ -66,11 +66,6 @@ CURRENT TODOs
|
|||||||
|
|
||||||
@@@@@@@@@@@ ROADMAP STAGE 2:
|
@@@@@@@@@@@ ROADMAP STAGE 2:
|
||||||
|
|
||||||
todo: "Activity" button in object event log
|
|
||||||
- How to get to User event log history? Right now you can click on History when you see a user panel in an object log history
|
|
||||||
- but that opens the history for the User object itself, not that user's history so we need another "Activity" button I think
|
|
||||||
- Ultimately it will be through the user list equivalent in raven, but it would be convenient to access it from the object log if the user has rights to view user activity
|
|
||||||
|
|
||||||
todo: would like to see who I'm logged in as at all times
|
todo: would like to see who I'm logged in as at all times
|
||||||
- In menu instead of "Home" text?
|
- In menu instead of "Home" text?
|
||||||
- In status bar at bottom?
|
- In status bar at bottom?
|
||||||
|
|||||||
@@ -11,6 +11,16 @@
|
|||||||
temporary
|
temporary
|
||||||
width="345"
|
width="345"
|
||||||
>
|
>
|
||||||
|
<template v-slot:prepend>
|
||||||
|
<div class="subtitle-2 primary--text pt-2 pl-4">
|
||||||
|
{{ $store.state.userName }}
|
||||||
|
</div>
|
||||||
|
<!-- <v-list-item>
|
||||||
|
<v-list-item-content>
|
||||||
|
<v-list-item-title>{{ $store.state.userName }}</v-list-item-title>
|
||||||
|
</v-list-item-content>
|
||||||
|
</v-list-item> -->
|
||||||
|
</template>
|
||||||
<!--
|
<!--
|
||||||
mini-variant
|
mini-variant
|
||||||
mini-variant-width="60"
|
mini-variant-width="60"
|
||||||
@@ -31,6 +41,7 @@
|
|||||||
<!--group activator -->
|
<!--group activator -->
|
||||||
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- TOP LEVEL HOLDER SUBITEMS -->
|
<!-- TOP LEVEL HOLDER SUBITEMS -->
|
||||||
<template v-for="subitem in item.navItems">
|
<template v-for="subitem in item.navItems">
|
||||||
<template v-if="!subitem.route">
|
<template v-if="!subitem.route">
|
||||||
@@ -219,20 +230,6 @@
|
|||||||
<script>
|
<script>
|
||||||
/* Xeslint-disable */
|
/* Xeslint-disable */
|
||||||
|
|
||||||
/*
|
|
||||||
<v-footer color="primary" v-if="!isAuthenticated">
|
|
||||||
<div class="text-center overline">
|
|
||||||
<a
|
|
||||||
href="https://ayanova.com"
|
|
||||||
target="_blank"
|
|
||||||
style="text-decoration:none"
|
|
||||||
class="white--text caption"
|
|
||||||
>
|
|
||||||
<span>AyaNova ({{ version }}) {{ copyright }}</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</v-footer>
|
|
||||||
*/
|
|
||||||
import ayaNovaVersion from "./api/ayanova-version";
|
import ayaNovaVersion from "./api/ayanova-version";
|
||||||
import gzconfirm from "./components/gzconfirm";
|
import gzconfirm from "./components/gzconfirm";
|
||||||
import gznotify from "./components/gznotify";
|
import gznotify from "./components/gznotify";
|
||||||
@@ -256,7 +253,7 @@ export default {
|
|||||||
menuItems: []
|
menuItems: []
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
//Detect version change, wipe persisted form settings if has changed
|
//Detect version change, wipe persisted form settings if has changed
|
||||||
let currentVersion = window.$gz.clientInfo.version;
|
let currentVersion = window.$gz.clientInfo.version;
|
||||||
@@ -282,7 +279,6 @@ export default {
|
|||||||
window.$gz.dialog.wireUpEventHandlers(this);
|
window.$gz.dialog.wireUpEventHandlers(this);
|
||||||
openObjectHandler.wireUpEventHandlers(this);
|
openObjectHandler.wireUpEventHandlers(this);
|
||||||
window.$gz.translation.setVuetifyDefaultLanguageElements(this);
|
window.$gz.translation.setVuetifyDefaultLanguageElements(this);
|
||||||
|
|
||||||
},
|
},
|
||||||
beforeDestroy() {
|
beforeDestroy() {
|
||||||
//UNWIRE ALL EVENT HANDLERS FROM GZEVENTBUS
|
//UNWIRE ALL EVENT HANDLERS FROM GZEVENTBUS
|
||||||
|
|||||||
Reference in New Issue
Block a user