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 /internal/storage/errors.go | |
| parent | 37a49b21af4550525890a84b5a7ccf6f1ed51243 (diff) | |
refactor: webauthn naming (#5243)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/storage/errors.go')
| -rw-r--r-- | internal/storage/errors.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/storage/errors.go b/internal/storage/errors.go index f3098f643..412a4b5ac 100644 --- a/internal/storage/errors.go +++ b/internal/storage/errors.go @@ -11,8 +11,8 @@ var ( // ErrNoTOTPConfiguration error thrown when no TOTP configuration has been found in DB. ErrNoTOTPConfiguration = errors.New("no TOTP configuration for user") - // ErrNoWebauthnDevice error thrown when no Webauthn device handle has been found in DB. - ErrNoWebauthnDevice = errors.New("no Webauthn device found") + // ErrNoWebAuthnDevice error thrown when no WebAuthn device handle has been found in DB. + ErrNoWebAuthnDevice = errors.New("no WebAuthn device found") // ErrNoDuoDevice error thrown when no Duo device and method has been found in DB. ErrNoDuoDevice = errors.New("no Duo device and method saved") |
