diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2023-04-15 02:04:42 +1000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-15 02:04:42 +1000 | 
| commit | 2733fc040cc43269889f5e11fd64c1fdb2e09ebd (patch) | |
| tree | 2459462966d202d1177fb166a83a476c2e9c5a51 /web/src/services/Api.ts | |
| parent | 37a49b21af4550525890a84b5a7ccf6f1ed51243 (diff) | |
refactor: webauthn naming (#5243)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'web/src/services/Api.ts')
| -rw-r--r-- | web/src/services/Api.ts | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/web/src/services/Api.ts b/web/src/services/Api.ts index 03bb4e1ce..0e301d628 100644 --- a/web/src/services/Api.ts +++ b/web/src/services/Api.ts @@ -11,11 +11,11 @@ export const FirstFactorPath = basePath + "/api/firstfactor";  export const InitiateTOTPRegistrationPath = basePath + "/api/secondfactor/totp/identity/start";  export const CompleteTOTPRegistrationPath = basePath + "/api/secondfactor/totp/identity/finish"; -export const WebauthnIdentityStartPath = basePath + "/api/secondfactor/webauthn/identity/start"; -export const WebauthnIdentityFinishPath = basePath + "/api/secondfactor/webauthn/identity/finish"; -export const WebauthnAttestationPath = basePath + "/api/secondfactor/webauthn/attestation"; +export const WebAuthnIdentityStartPath = basePath + "/api/secondfactor/webauthn/identity/start"; +export const WebAuthnIdentityFinishPath = basePath + "/api/secondfactor/webauthn/identity/finish"; +export const WebAuthnAttestationPath = basePath + "/api/secondfactor/webauthn/attestation"; -export const WebauthnAssertionPath = basePath + "/api/secondfactor/webauthn/assertion"; +export const WebAuthnAssertionPath = basePath + "/api/secondfactor/webauthn/assertion";  export const InitiateDuoDeviceSelectionPath = basePath + "/api/secondfactor/duo_devices";  export const CompleteDuoDeviceSelectionPath = basePath + "/api/secondfactor/duo_device";  | 
