summaryrefslogtreecommitdiff
path: root/www/js/app.js
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-08-28 11:52:59 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-08-28 11:52:59 -0400
commitb9f387782bf9ea222d52eac954f1bddad8131391 (patch)
tree94e349c9e2ff709237e32adf0cc9f25632391874 /www/js/app.js
parent4332c99d924cd00b6a6e5f1b306db8da58b2ab59 (diff)
Implemented auth key into the app so each image refresh in Montage and Monitor view does not hit the ZM DB and generate a million records. Solves the log pings of https://github.com/pliablepixels/zmNinja/issues/26
Diffstat (limited to 'www/js/app.js')
-rw-r--r--www/js/app.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/www/js/app.js b/www/js/app.js
index bbcc50a8..20066d2d 100644
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -370,6 +370,26 @@ angular.module('zmApp', [
d.reject("Login Error");
}
+
+ // Now go ahead and re-get auth key
+ $rootScope.authSession="undefined";
+ var ld = ZMDataModel.getLogin();
+ ZMDataModel.getAuthKey()
+ .then(function(success)
+ {
+
+ console.log (success);
+ $rootScope.authSession = success;
+ ZMDataModel.zmLog ("Stream authentication construction: " +
+ $rootScope.authSession);
+
+ },
+ function (error)
+ {
+ console.log (error);
+ //$rootScope.authSession="";
+ ZMDataModel.zmLog ("Modal: Error returned Stream authentication construction. Retaining old value of: " + $rootScope.authSession);
+ });
return (d.promise);