* 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:
Bryan Ashby 2015-09-23 23:41:06 -06:00
parent d63320e0b7
commit 903db84f23
7 changed files with 60 additions and 56 deletions

View file

@ -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!');
}
});
}
}