Template updates

This commit is contained in:
Bryan Ashby 2022-07-16 22:17:25 -06:00
parent 547d21683e
commit 821380fcb5
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
2 changed files with 75 additions and 1 deletions

View File

@ -250,7 +250,7 @@
config: { config: {
// formats // formats
quickLogTimestampFormat: "|01|02MM|08/|02DD hh:mm:ssa" quickLogTimestampFormat: "|01|02MM|08/|02DD hh:mm:ssa"
nowDateTimeFormat: "|00|11ddd|08, |11MMMM Do YYYY|08, |11h|08:|11mm|08:|11ss|03a" nowDateTimeFormat: "|00|11ddd|08, |11MMMM Do YYYY|08, |11h|08:|11mm|03a"
lastLoginDateTimeFormat: "|00|10ddd hh|08:|10mm|02a" lastLoginDateTimeFormat: "|00|10ddd hh|08:|10mm|02a"
// header // header

View File

@ -153,6 +153,10 @@
value: { command: "MRC" } value: { command: "MRC" }
action: @menu:mrc action: @menu:mrc
} }
{
value: { command: "!WFC" }
action: @menu:mainMenuWaitingForCaller
}
{ {
value: { command: "2FA" } value: { command: "2FA" }
action: [ action: [
@ -193,6 +197,76 @@
} }
} }
mainMenuWaitingForCaller: {
desc: -WFC-
module: wfc
config: {
art: {
main: wfc
help: wfchelp
}
}
form: {
0: {
mci: {
VM1: {
focus: true
}
VM2: {
focus: false
acceptsFocus: false
acceptsInput: false
}
}
actionKeys: [
{
keys: [ "a", "shift + a" ]
action: @method:toggleAvailable
}
{
keys: [ "v", "shift + v" ]
action: @method:toggleVisible
}
{
keys: [ "?", "h", "shift + h" ]
action: @method:displayHelp
}
{
keys: [ "1", "2", "3", "4", "5", "6", "7", "8", "9" ]
action: @method:setNodeStatusSelection
}
{
keys: [ "k", "shift + k" ]
action: @method:kickSelectedNode
}
{
keys: [ "escape", "q", "shift + q" ]
action: @systemMethod:prevMenu
}
]
}
// confirmKickNodePrompt
3: {
submit: {
*: [
{
value: { promptValue: 0 }
action: @method:kickNodeYes
}
{
value: { promptValue: 1 }
action: @method:kickNodeNo
}
]
}
}
}
}
mrc: { mrc: {
desc: MRC Chat desc: MRC Chat
module: mrc module: mrc