diff options
author | Puyodead1 <puyodead@proton.me> | 2023-01-29 21:30:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-30 13:30:42 +1100 |
commit | 709dc7280e8b4aab2b173c3897b418f6e1759ae7 (patch) | |
tree | 5a8ed3e144a8032649d1c2f7c72f9c0c01e7742c /src/api/middlewares | |
parent | Merge branch 'master' of github.com:fosscord/fosscord-server (diff) | |
download | server-709dc7280e8b4aab2b173c3897b418f6e1759ae7.tar.xz |
Implement WebAuthn (#967)
* implement webauthn * code review --------- Co-authored-by: Madeline <46743919+MaddyUnderStars@users.noreply.github.com>
Diffstat (limited to 'src/api/middlewares')
-rw-r--r-- | src/api/middlewares/Authentication.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/api/middlewares/Authentication.ts b/src/api/middlewares/Authentication.ts index 8e0dcc7c..ea0aa312 100644 --- a/src/api/middlewares/Authentication.ts +++ b/src/api/middlewares/Authentication.ts @@ -27,6 +27,7 @@ export const NO_AUTHORIZATION_ROUTES = [ "/auth/register", "/auth/location-metadata", "/auth/mfa/totp", + "/auth/mfa/webauthn", // Routes with a seperate auth system "/webhooks/", // Public information endpoints |