Skip to content

Commit

Permalink
Merge pull request #25789 from gastaldi/icon
Browse files Browse the repository at this point in the history
Remove `quarkus.webauthn.relying-party.icon`
  • Loading branch information
gsmet authored May 25, 2022
2 parents 748908f + f65d35a commit 1d923f6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,6 @@ public static class RelyingPartyConfig {
*/
@ConfigItem(defaultValue = "Quarkus server")
public String name;

/**
* A URL location for an icon
*/
@ConfigItem
public Optional<String> icon;
}

// FIXME: merge with form config?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@ public WebAuthnSecurity(WebAuthnRunTimeConfig config, Vertx vertx, WebAuthnAuthe
}
// this is required
relyingParty.setName(config.relyingParty.name);
if (config.relyingParty.icon.isPresent()) {
relyingParty.setIcon(config.relyingParty.icon.get());
}
options.setRelyingParty(relyingParty);
if (config.attestation.isPresent()) {
options.setAttestation(config.attestation.get());
Expand Down

0 comments on commit 1d923f6

Please sign in to comment.