@geexcode/geex-angular 0.0.27 → 0.0.28
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -176,7 +176,7 @@ function createAuthModule(injector) {
|
|
|
176
176
|
async loadUserData() {
|
|
177
177
|
const oAuthService = injector.get(import_angular_oauth2_oidc.OAuthService);
|
|
178
178
|
try {
|
|
179
|
-
await oAuthService.
|
|
179
|
+
await oAuthService.loadDiscoveryDocument();
|
|
180
180
|
if (!oAuthService.hasValidAccessToken()) {
|
|
181
181
|
return void 0;
|
|
182
182
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -131,7 +131,7 @@ function createAuthModule(injector) {
|
|
|
131
131
|
async loadUserData() {
|
|
132
132
|
const oAuthService = injector.get(OAuthService);
|
|
133
133
|
try {
|
|
134
|
-
await oAuthService.
|
|
134
|
+
await oAuthService.loadDiscoveryDocument();
|
|
135
135
|
if (!oAuthService.hasValidAccessToken()) {
|
|
136
136
|
return void 0;
|
|
137
137
|
}
|