renamed service variables to conform to new naming scheme

This commit is contained in:
azivner
2018-03-25 13:41:29 -04:00
parent d746d707b5
commit 297a2cd9da
31 changed files with 121 additions and 176 deletions

View File

@@ -1,13 +1,11 @@
"use strict";
import protected_session from './protected_session.js';
import protectedSessionService from './protected_session.js';
import utils from './utils.js';
function getHeaders() {
let protectedSessionId = null;
try { // this is because protected session might not be declared in some cases - like when it's included in migration page
protectedSessionId = protected_session.getProtectedSessionId();
protectedSessionId = protectedSessionService.getProtectedSessionId();
}
catch(e) {}