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/util/entities/index.ts | |
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/util/entities/index.ts')
-rw-r--r-- | src/util/entities/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/entities/index.ts b/src/util/entities/index.ts index d856c41b..6dfbd822 100644 --- a/src/util/entities/index.ts +++ b/src/util/entities/index.ts @@ -23,8 +23,8 @@ export * from "./BackupCodes"; export * from "./Ban"; export * from "./BaseClass"; export * from "./Categories"; -export * from "./ClientRelease"; export * from "./Channel"; +export * from "./ClientRelease"; export * from "./Config"; export * from "./ConnectedAccount"; export * from "./EmbedCache"; @@ -41,6 +41,7 @@ export * from "./ReadState"; export * from "./Recipient"; export * from "./Relationship"; export * from "./Role"; +export * from "./SecurityKey"; export * from "./Session"; export * from "./Sticker"; export * from "./StickerPack"; |