Tidy
This commit is contained in:
parent
d0db38a544
commit
09927a6ec1
|
@ -35,6 +35,7 @@ const MciViewIds = {
|
||||||
|
|
||||||
// Secure + 2FA + root user + 'wfc' group.
|
// Secure + 2FA + root user + 'wfc' group.
|
||||||
const DefaultACS = 'SCAF2ID1GM[wfc]';
|
const DefaultACS = 'SCAF2ID1GM[wfc]';
|
||||||
|
const MainStatRefreshTimeMs = 5000; // 5s
|
||||||
|
|
||||||
exports.getModule = class WaitingForCallerModule extends MenuModule {
|
exports.getModule = class WaitingForCallerModule extends MenuModule {
|
||||||
constructor(options) {
|
constructor(options) {
|
||||||
|
@ -118,7 +119,7 @@ exports.getModule = class WaitingForCallerModule extends MenuModule {
|
||||||
_startRefreshing() {
|
_startRefreshing() {
|
||||||
this.mainRefreshTimer = setInterval( () => {
|
this.mainRefreshTimer = setInterval( () => {
|
||||||
this._refreshAll();
|
this._refreshAll();
|
||||||
}, 5000);
|
}, MainStatRefreshTimeMs);
|
||||||
}
|
}
|
||||||
|
|
||||||
_stopRefreshing() {
|
_stopRefreshing() {
|
||||||
|
|
|
@ -18,6 +18,7 @@ To change the ACS required, specify a alternative `acs` in the `config` block. F
|
||||||
mainMenuWaitingForCaller: {
|
mainMenuWaitingForCaller: {
|
||||||
// ...
|
// ...
|
||||||
config: {
|
config: {
|
||||||
|
// initial +op over secure connection only
|
||||||
acs: SCID1GM[sysops]
|
acs: SCID1GM[sysops]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue