From 0748880d4a6602168dbd3d873a3dc1eb0b2fbe53 Mon Sep 17 00:00:00 2001 From: aj Date: Tue, 15 Aug 2017 16:53:10 +0000 Subject: [PATCH] add oauth3 instance to Auth --- js/services/auth.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/services/auth.js b/js/services/auth.js index 17abe97..adef821 100644 --- a/js/services/auth.js +++ b/js/services/auth.js @@ -60,7 +60,10 @@ app.factory('Auth', [ } , sessions: [] , session: null + , oauth3: null }; + Auth.oauth3 = Oauth3.create(window.location); + return Auth; }]);