[PR #424] [MERGED] Feat/magic link auth selection #463

Closed
opened 2026-03-03 11:30:05 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/424
Author: @manikanta9176
Created: 8/21/2025
Status: Merged
Merged: 8/21/2025
Merged by: @manikanta9176

Base: mainHead: feat/magic-link-auth-selection


📝 Commits (4)

  • e984103 feat(auth): add global authentication method configuration
  • b2c7ab7 feat(auth): add magic link authentication
  • 48dcc8d feat(auth): implement configurable authentication methods
  • c5da79e feat(auth): enhance sign-in and magic link flows with improved user feedback

📊 Changes

18 files changed (+1515 additions, -348 deletions)

View changed files

.hintrc (+8 -0)
📝 package.json (+1 -0)
📝 pnpm-lock.yaml (+9 -0)
📝 src/actions/auth/index.ts (+334 -34)
📝 src/actions/auth/validator.ts (+6 -0)
src/actions/pages/auth/index.ts (+32 -0)
📝 src/app/(frontend)/(auth)/forgot-password/page.tsx (+16 -1)
📝 src/app/(frontend)/(auth)/sign-in/page.tsx (+9 -2)
📝 src/app/(frontend)/(auth)/sign-up/page.tsx (+14 -7)
📝 src/components/forgot-password/ForgotPasswordForm.tsx (+82 -51)
📝 src/components/sign-in/SignInForm.tsx (+336 -92)
📝 src/components/sign-up/SignUpForm.tsx (+127 -100)
src/emails/login-confirmation/index.tsx (+190 -0)
src/emails/magic-link/index.tsx (+170 -0)
📝 src/payload-types.ts (+22 -0)
📝 src/payload.config.ts (+2 -1)
📝 src/payload/endpoints/auto-login/index.ts (+130 -60)
src/payload/globals/AuthConfig/index.ts (+27 -0)

📄 Description

No description provided


🔄 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/dflow-sh/dflow/pull/424 **Author:** [@manikanta9176](https://github.com/manikanta9176) **Created:** 8/21/2025 **Status:** ✅ Merged **Merged:** 8/21/2025 **Merged by:** [@manikanta9176](https://github.com/manikanta9176) **Base:** `main` ← **Head:** `feat/magic-link-auth-selection` --- ### 📝 Commits (4) - [`e984103`](https://github.com/dflow-sh/dflow/commit/e984103780e56afe05aeaf3d54226724d1c77106) feat(auth): add global authentication method configuration - [`b2c7ab7`](https://github.com/dflow-sh/dflow/commit/b2c7ab7fa155675f97cdd2b0f10748f1ab9436a7) feat(auth): add magic link authentication - [`48dcc8d`](https://github.com/dflow-sh/dflow/commit/48dcc8d44c8ebb9713df0506795ff85a65f8b151) feat(auth): implement configurable authentication methods - [`c5da79e`](https://github.com/dflow-sh/dflow/commit/c5da79e4ffd7e7e2a3d189b075e050b10c172b81) feat(auth): enhance sign-in and magic link flows with improved user feedback ### 📊 Changes **18 files changed** (+1515 additions, -348 deletions) <details> <summary>View changed files</summary> ➕ `.hintrc` (+8 -0) 📝 `package.json` (+1 -0) 📝 `pnpm-lock.yaml` (+9 -0) 📝 `src/actions/auth/index.ts` (+334 -34) 📝 `src/actions/auth/validator.ts` (+6 -0) ➕ `src/actions/pages/auth/index.ts` (+32 -0) 📝 `src/app/(frontend)/(auth)/forgot-password/page.tsx` (+16 -1) 📝 `src/app/(frontend)/(auth)/sign-in/page.tsx` (+9 -2) 📝 `src/app/(frontend)/(auth)/sign-up/page.tsx` (+14 -7) 📝 `src/components/forgot-password/ForgotPasswordForm.tsx` (+82 -51) 📝 `src/components/sign-in/SignInForm.tsx` (+336 -92) 📝 `src/components/sign-up/SignUpForm.tsx` (+127 -100) ➕ `src/emails/login-confirmation/index.tsx` (+190 -0) ➕ `src/emails/magic-link/index.tsx` (+170 -0) 📝 `src/payload-types.ts` (+22 -0) 📝 `src/payload.config.ts` (+2 -1) 📝 `src/payload/endpoints/auto-login/index.ts` (+130 -60) ➕ `src/payload/globals/AuthConfig/index.ts` (+27 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:30:05 +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/dflow#463
No description provided.