From 4b1ab2fdd1d7a410083a1d32598e2bd3b6180bdb Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Fri, 12 May 2023 21:54:23 +0200 Subject: [PATCH] Typo fixed (#1513) --- .../3.0/config/packages/webauthn.yaml | 6 +++--- web-auth/webauthn-symfony-bundle/3.0/manifest.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml index 741c5d68..c8515774 100644 --- a/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml +++ b/web-auth/webauthn-symfony-bundle/3.0/config/packages/webauthn.yaml @@ -6,8 +6,8 @@ webauthn: creation_profiles: default: rp: - name: '%env(RELAYING_PARTY_NAME)%' # Please adapt the env file with the correct relaying party ID or set null - id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null + name: '%env(RELYING_PARTY_NAME)%' # Please adapt the env file with the correct relaying party ID or set null + id: '%env(RELYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null request_profiles: default: - rp_id: '%env(RELAYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null + rp_id: '%env(RELYING_PARTY_ID)%' # Please adapt the env file with the correct relaying party ID or set null diff --git a/web-auth/webauthn-symfony-bundle/3.0/manifest.json b/web-auth/webauthn-symfony-bundle/3.0/manifest.json index 0c2d2d7d..fb638a34 100644 --- a/web-auth/webauthn-symfony-bundle/3.0/manifest.json +++ b/web-auth/webauthn-symfony-bundle/3.0/manifest.json @@ -6,7 +6,7 @@ "config/": "%CONFIG_DIR%" }, "env": { - "RELAYING_PARTY_ID": "example.com", - "RELAYING_PARTY_NAME": "My Application" + "RELYING_PARTY_ID": "example.com", + "RELYING_PARTY_NAME": "My Application" } }