1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

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
2 changed files with 9 additions and 1 deletions

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;
}
}
}
}