This commit is contained in:
@@ -50,6 +50,9 @@ CURRENT TODOs
|
|||||||
@@@@@@@@@@@ ROADMAP STAGE 2:
|
@@@@@@@@@@@ ROADMAP STAGE 2:
|
||||||
|
|
||||||
|
|
||||||
|
todo: ops-dashboard for ops user with the basic server state controls and status of the server
|
||||||
|
server state control is a toggle, open or opsonly
|
||||||
|
|
||||||
todo: SERVER STATE
|
todo: SERVER STATE
|
||||||
- check server status on attempt to login for first time or whatever, it should give a prominent warning if the server is unavailable due to closed for maint or whatever rather than just timing out.
|
- check server status on attempt to login for first time or whatever, it should give a prominent warning if the server is unavailable due to closed for maint or whatever rather than just timing out.
|
||||||
- Also it allows login which is good but it should restrict the UI if it's a fresh login to a closed server rather than just failing to do certain things
|
- Also it allows login which is good but it should restrict the UI if it's a fresh login to a closed server rather than just failing to do certain things
|
||||||
@@ -58,6 +61,8 @@ todo: SERVER STATE
|
|||||||
- NEED LOCKOUT PAGE WITH SERVER STATUS
|
- NEED LOCKOUT PAGE WITH SERVER STATUS
|
||||||
- for ops they can do some things, for non-ops they can just view and see latest info, goes home when server is back online
|
- for ops they can do some things, for non-ops they can just view and see latest info, goes home when server is back online
|
||||||
|
|
||||||
|
todo: login form, if trial or dev then needs to display list of sample users to login as and it fills in the login and password
|
||||||
|
|
||||||
todo: Why is there an error in the console when a user is not logged in and opens client?
|
todo: Why is there an error in the console when a user is not logged in and opens client?
|
||||||
- It should just go to login, no error should show in the console
|
- It should just go to login, no error should show in the console
|
||||||
|
|
||||||
|
|||||||
@@ -73,10 +73,10 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
input: {
|
input: {
|
||||||
// username: "manager",
|
username: "manager",
|
||||||
// password: "l3tm3in"
|
password: "l3tm3in"
|
||||||
username: "CustomerLimited",
|
// username: "CustomerLimited",
|
||||||
password: "CustomerLimited"
|
// password: "CustomerLimited"
|
||||||
},
|
},
|
||||||
errorBadCreds: false,
|
errorBadCreds: false,
|
||||||
reveal: false,
|
reveal: false,
|
||||||
|
|||||||
31
ayanova/src/views/ops-server-state.vue
Normal file
31
ayanova/src/views/ops-server-state.vue
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<template>
|
||||||
|
<UnderConstruction />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import UnderConstruction from "../components/underconstruction.vue";
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <div>
|
||||||
|
MRU + depending on role: new workorder, new client, personal workorder
|
||||||
|
list if scheduleable, or if ops then whatever ops needs or admin whatever
|
||||||
|
they need etc
|
||||||
|
</div>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
UnderConstruction
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
window.$gz.eventBus.$emit("menu-change", {
|
||||||
|
isMain: true,
|
||||||
|
icon: "fa-tachometer-alt",
|
||||||
|
title: this.$ay.t("Home"),
|
||||||
|
helpUrl: "form-home-dashboard"
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user