Provide information to set webauthn allow in html template (#455)

This commit is contained in:
Matt Gibson 2021-08-12 16:12:31 -04:00 committed by GitHub
parent c5f236c2e4
commit 0180d0cce5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View File

@ -44,6 +44,10 @@ export class TwoFactorComponent implements OnInit, OnDestroy {
onSuccessfulLogin: () => Promise<any>;
onSuccessfulLoginNavigate: () => Promise<any>;
get webAuthnAllow(): string {
return `publickey-credentials-get ${this.environmentService.getWebVaultUrl()}`;
}
protected loginRoute = 'login';
protected successRoute = 'vault';

View File

@ -1,6 +1,8 @@
import { I18nService } from '../abstractions/i18n.service';
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
import { IFrameComponent } from './iframe_component';
import { Utils } from './utils';
export class WebAuthnIFrame extends IFrameComponent {
constructor(win: Window, webVaultUrl: string, private webAuthnNewTab: boolean,
@ -20,7 +22,9 @@ export class WebAuthnIFrame extends IFrameComponent {
this.platformUtilsService.launchUri(`${this.webVaultUrl}/webauthn-fallback-connector.html?${params}`);
} else {
super.initComponent(params);
this.iframe.allow = 'publickey-credentials-get ' + new URL(this.webVaultUrl).origin;
if (Utils.isNullOrWhitespace(this.iframe.allow)) {
this.iframe.allow = 'publickey-credentials-get ' + new URL(this.webVaultUrl).origin;
}
}
}
}