[PR #1983] [MERGED] fix: refactor auth router #1976

Closed
opened 2026-02-26 20:31:54 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/documenso/documenso/pull/1983
Author: @dguyen
Created: 8/22/2025
Status: Merged
Merged: 8/24/2025
Merged by: @Mythie

Base: mainHead: fix/refactor-auth-router


📝 Commits (2)

  • a2c5d78 fix: refactor auth router
  • 9809a5c Merge branch 'main' into fix/refactor-auth-router

📊 Changes

22 files changed (+280 additions, -167 deletions)

View changed files

📝 apps/remix/app/components/dialogs/passkey-create-dialog.tsx (+2 -2)
📝 apps/remix/app/components/forms/signin.tsx (+1 -1)
📝 apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx (+1 -1)
📝 apps/remix/app/components/general/document-signing/document-signing-auth-provider.tsx (+1 -1)
📝 apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx (+2 -2)
📝 apps/remix/app/components/tables/settings-security-passkey-table.tsx (+1 -1)
packages/trpc/server/auth-router/create-passkey-authentication-options.ts (+17 -0)
packages/trpc/server/auth-router/create-passkey-authentication-options.types.ts (+19 -0)
packages/trpc/server/auth-router/create-passkey-registration-options.ts (+16 -0)
packages/trpc/server/auth-router/create-passkey-registration-options.types.ts (+12 -0)
packages/trpc/server/auth-router/create-passkey-signin-options.ts (+24 -0)
packages/trpc/server/auth-router/create-passkey-signin-options.types.ts (+15 -0)
packages/trpc/server/auth-router/create-passkey.ts (+21 -0)
packages/trpc/server/auth-router/create-passkey.types.ts (+13 -0)
packages/trpc/server/auth-router/delete-passkey.ts (+23 -0)
packages/trpc/server/auth-router/delete-passkey.types.ts (+10 -0)
packages/trpc/server/auth-router/find-passkeys.ts (+18 -0)
packages/trpc/server/auth-router/find-passkeys.types.ts (+33 -0)
📝 packages/trpc/server/auth-router/router.ts (+16 -109)
📝 packages/trpc/server/auth-router/schema.ts (+0 -50)

...and 2 more files

📄 Description

Description

Refactor auth router to follow new conventions and enforce request/response schemas.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/documenso/documenso/pull/1983 **Author:** [@dguyen](https://github.com/dguyen) **Created:** 8/22/2025 **Status:** ✅ Merged **Merged:** 8/24/2025 **Merged by:** [@Mythie](https://github.com/Mythie) **Base:** `main` ← **Head:** `fix/refactor-auth-router` --- ### 📝 Commits (2) - [`a2c5d78`](https://github.com/documenso/documenso/commit/a2c5d783b717f538211fe1cf505239a7947b66d7) fix: refactor auth router - [`9809a5c`](https://github.com/documenso/documenso/commit/9809a5c5ab08bc0884f3f4bbccf552b4fa525478) Merge branch 'main' into fix/refactor-auth-router ### 📊 Changes **22 files changed** (+280 additions, -167 deletions) <details> <summary>View changed files</summary> 📝 `apps/remix/app/components/dialogs/passkey-create-dialog.tsx` (+2 -2) 📝 `apps/remix/app/components/forms/signin.tsx` (+1 -1) 📝 `apps/remix/app/components/general/document-signing/document-signing-auth-passkey.tsx` (+1 -1) 📝 `apps/remix/app/components/general/document-signing/document-signing-auth-provider.tsx` (+1 -1) 📝 `apps/remix/app/components/tables/settings-security-passkey-table-actions.tsx` (+2 -2) 📝 `apps/remix/app/components/tables/settings-security-passkey-table.tsx` (+1 -1) ➕ `packages/trpc/server/auth-router/create-passkey-authentication-options.ts` (+17 -0) ➕ `packages/trpc/server/auth-router/create-passkey-authentication-options.types.ts` (+19 -0) ➕ `packages/trpc/server/auth-router/create-passkey-registration-options.ts` (+16 -0) ➕ `packages/trpc/server/auth-router/create-passkey-registration-options.types.ts` (+12 -0) ➕ `packages/trpc/server/auth-router/create-passkey-signin-options.ts` (+24 -0) ➕ `packages/trpc/server/auth-router/create-passkey-signin-options.types.ts` (+15 -0) ➕ `packages/trpc/server/auth-router/create-passkey.ts` (+21 -0) ➕ `packages/trpc/server/auth-router/create-passkey.types.ts` (+13 -0) ➕ `packages/trpc/server/auth-router/delete-passkey.ts` (+23 -0) ➕ `packages/trpc/server/auth-router/delete-passkey.types.ts` (+10 -0) ➕ `packages/trpc/server/auth-router/find-passkeys.ts` (+18 -0) ➕ `packages/trpc/server/auth-router/find-passkeys.types.ts` (+33 -0) 📝 `packages/trpc/server/auth-router/router.ts` (+16 -109) 📝 `packages/trpc/server/auth-router/schema.ts` (+0 -50) _...and 2 more files_ </details> ### 📄 Description ## Description Refactor auth router to follow new conventions and enforce request/response schemas. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 20:31:54 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/documenso#1976
No description provided.