Typo fixed (#1513)

This commit is contained in:
Florent Morselli
2023-05-12 21:54:23 +02:00
committed by GitHub
parent 1e703a7ce6
commit 4b1ab2fdd1
2 changed files with 5 additions and 5 deletions

View File

@@ -6,8 +6,8 @@ webauthn:
creation_profiles: creation_profiles:
default: default:
rp: rp:
name: '%env(RELAYING_PARTY_NAME)%' # 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(RELAYING_PARTY_ID)%' # 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: request_profiles:
default: 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

View File

@@ -6,7 +6,7 @@
"config/": "%CONFIG_DIR%" "config/": "%CONFIG_DIR%"
}, },
"env": { "env": {
"RELAYING_PARTY_ID": "example.com", "RELYING_PARTY_ID": "example.com",
"RELAYING_PARTY_NAME": "My Application" "RELYING_PARTY_NAME": "My Application"
} }
} }