@vocollege/app 0.0.69 → 0.0.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modules/VoAuth.js +1 -0
- package/package.json +1 -1
- package/src/modules/VoAuth.ts +2 -0
package/dist/modules/VoAuth.js
CHANGED
|
@@ -234,6 +234,7 @@ var VoAuth = /** @class */ (function (_super) {
|
|
|
234
234
|
: "";
|
|
235
235
|
};
|
|
236
236
|
VoAuth.prototype.resetSession = function () {
|
|
237
|
+
console.log("VoConfig.get.AUTH_DOMAIN", VoConfig_1.default.get.AUTH_DOMAIN);
|
|
237
238
|
var refreshTokenKey = VoConfig_1.default.get.AUTH_STORAGE_REFRESH_TOKEN || "";
|
|
238
239
|
Helpers.localStorage.remove(refreshTokenKey);
|
|
239
240
|
js_cookie_1.default.remove(refreshTokenKey, { domain: VoConfig_1.default.get.AUTH_DOMAIN });
|
package/package.json
CHANGED
package/src/modules/VoAuth.ts
CHANGED
|
@@ -141,6 +141,8 @@ class VoAuth extends VoBase {
|
|
|
141
141
|
: "";
|
|
142
142
|
}
|
|
143
143
|
resetSession() {
|
|
144
|
+
console.log("VoConfig.get.AUTH_DOMAIN", VoConfig.get.AUTH_DOMAIN);
|
|
145
|
+
|
|
144
146
|
let refreshTokenKey = VoConfig.get.AUTH_STORAGE_REFRESH_TOKEN || "";
|
|
145
147
|
Helpers.localStorage.remove(refreshTokenKey);
|
|
146
148
|
JsCookies.remove(refreshTokenKey, { domain: VoConfig.get.AUTH_DOMAIN });
|