mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-28 13:36:16 +02:00
* New fallback with default vs explicit working
* New @systemMethod:fallbackMenu working * Work on NUA flow: added preamble and some work on FSE related stuff
This commit is contained in:
parent
d63320e0b7
commit
903db84f23
7 changed files with 60 additions and 56 deletions
|
@ -10,6 +10,7 @@ var async = require('async');
|
|||
|
||||
exports.login = login;
|
||||
exports.logoff = logoff;
|
||||
exports.fallbackMenu = fallbackMenu;
|
||||
|
||||
function login(callingMenu, formData, extraArgs) {
|
||||
var client = callingMenu.client;
|
||||
|
@ -138,7 +139,7 @@ function logoff(callingMenu, formData, extraArgs) {
|
|||
function fallbackMenu(callingMenu, formData, extraArgs) {
|
||||
callingMenu.client.fallbackMenuModule( { extraArgs : extraArgs }, function result(err) {
|
||||
if(err) {
|
||||
callingMenu.client.log.error( { error : err }, 'Error attempting to ')
|
||||
callingMenu.client.log.error( { error : err }, 'Error attempting to fallback!');
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue