mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-11 07:04:32 +02:00
* System stats
* Last callers rewritten using format and VM * Some minor MCI stuff
This commit is contained in:
parent
d02d9e4a7c
commit
1c1f4394ca
15 changed files with 126 additions and 39 deletions
|
@ -22,7 +22,15 @@ function getAvailableMessageAreas() {
|
|||
}
|
||||
|
||||
function getDefaultMessageArea() {
|
||||
return getAvailableMessageAreas()[0];
|
||||
//
|
||||
// Return first non-private/etc. area name. This will be from config.hjson
|
||||
//
|
||||
var avail = getAvailableMessageAreas();
|
||||
for(var i = 0; i < avail.length; ++i) {
|
||||
if(Message.WellKnownAreaNames.Private !== avail[i].name) {
|
||||
return avail[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function getMessageAreaByName(areaName) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue