Searched refs:newAuthInfo (Results 1 – 4 of 4) sorted by relevance
/plugin/diagramsnet/lib/js/diagramly/ |
D | DriveClient.js | 550 window.parent.driveAuth(mxUtils.bind(this, function(newAuthInfo) argument 552 this.updateAuthInfo(newAuthInfo, true, true, success, error); 572 DriveClient.prototype.updateAuthInfo = function (newAuthInfo, remember, forceUserUpdate, success, e… argument 574 _token = newAuthInfo.access_token; 575 delete newAuthInfo.access_token; //Don't store access token 576 newAuthInfo.expires = Date.now() + parseInt(newAuthInfo.expires_in) * 1000; 577 newAuthInfo.remember = remember; 579 this.resetTokenRefresh(newAuthInfo); 586 var strAuthInfo = JSON.stringify(newAuthInfo); 603 this.setPersistentToken(newAuthInfo, !remember); [all …]
|
D | DropboxClient.js | 187 window.onDropboxCallback = mxUtils.bind(this, function(newAuthInfo, authWindow) argument 196 if (newAuthInfo == null) 207 _token = newAuthInfo.access_token;
|
D | GitHubClient.js | 162 window.onGitHubCallback = mxUtils.bind(this, function(newAuthInfo, authWindow) argument 169 if (newAuthInfo == null) 180 _token = newAuthInfo.access_token;
|
D | GitLabClient.js | 119 window.onGitLabCallback = mxUtils.bind(this, function(newAuthInfo, authWindow) argument 126 if (newAuthInfo == null) 137 _token = newAuthInfo.access_token;
|