This commit is contained in:
Bryan Ashby 2022-05-04 10:25:59 -06:00
parent d0db38a544
commit 09927a6ec1
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
2 changed files with 3 additions and 1 deletions

View File

@ -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() {

View File

@ -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]
} }
} }