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