wazuh-kibana-app/public/factories/misc.js
2018-09-12 11:00:55 +02:00

55 lines
1.1 KiB
JavaScript

/*
* Wazuh app - Factory to share common variables between controllers
*
* Copyright (C) 2018 Wazuh, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Find more information about this on the LICENSE file.
*/
export class WzMisc {
constructor() {
this.state = {
apiIsDown: false,
comeFromWizard: false,
blankScreenError: false,
lastRestart: null
};
}
setApiIsDown(value) {
this.state.apiIsDown = value;
}
getApiIsDown() {
return this.state.apiIsDown;
}
setWizard(value) {
this.state.comeFromWizard = value;
}
getWizard() {
return this.state.comeFromWizard;
}
setBlankScr(value) {
this.state.blankScreenError = value;
}
getBlankScr() {
return this.state.blankScreenError;
}
setLastRestart(value) {
this.state.lastRestart = value;
}
getLastRestart() {
return this.state.lastRestart;
}
}