[PR #1073] [CLOSED] [FEAT] Reset password flow #3572

Closed
opened 2026-02-22 18:34:03 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1073
Author: @shatfield4
Created: 4/9/2024
Status: Closed

Base: masterHead: 1072-feat-implement-reset-password-recovery-flows


📝 Commits (8)

  • 1e76657 update prisma schema/create new models for pw recovery
  • 50da1e5 WIP password recovery backend
  • 7d5db62 WIP reset password flow
  • c0f6e8f WIP pw reset flow
  • 22dff49 password reset logic complete & functional UI
  • 6407949 create placeholder modal to display recovery codes
  • 35a457a Merge branch 'master' into 1072-feat-implement-reset-password-recovery-flows
  • 17e44e0 implement UI for recovery code modals/download recovery codes

📊 Changes

6 files changed (+780 additions, -66 deletions)

View changed files

📝 frontend/src/components/Modals/Password/MultiUserAuth.jsx (+410 -53)
📝 frontend/src/models/system.js (+37 -0)
📝 server/endpoints/system.js (+147 -0)
server/models/passwordRecovery.js (+101 -0)
server/prisma/migrations/20240409234222_init/migration.sql (+47 -0)
📝 server/prisma/schema.prisma (+38 -13)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #1072

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Add feature for allowing user to reset password

Additional Information

Add any other context about the Pull Request here that was not captured above.

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/Mintplex-Labs/anything-llm/pull/1073 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 4/9/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `1072-feat-implement-reset-password-recovery-flows` --- ### 📝 Commits (8) - [`1e76657`](https://github.com/Mintplex-Labs/anything-llm/commit/1e766577d66df0a7e3e97c294e28906166f7077a) update prisma schema/create new models for pw recovery - [`50da1e5`](https://github.com/Mintplex-Labs/anything-llm/commit/50da1e5923e46287ed69c94e048de8a3b06e6132) WIP password recovery backend - [`7d5db62`](https://github.com/Mintplex-Labs/anything-llm/commit/7d5db62bcb684b4050770cdf1b202c1807ea8ba8) WIP reset password flow - [`c0f6e8f`](https://github.com/Mintplex-Labs/anything-llm/commit/c0f6e8ff4d0d5bd0c7473e10b45e440a19c40863) WIP pw reset flow - [`22dff49`](https://github.com/Mintplex-Labs/anything-llm/commit/22dff494a8fbf17d004393354ae917632ba2a47b) password reset logic complete & functional UI - [`6407949`](https://github.com/Mintplex-Labs/anything-llm/commit/6407949d41f54d74157942fb284498ed8ab5a9be) create placeholder modal to display recovery codes - [`35a457a`](https://github.com/Mintplex-Labs/anything-llm/commit/35a457a0ae355786871ee65b06839c31f99dd126) Merge branch 'master' into 1072-feat-implement-reset-password-recovery-flows - [`17e44e0`](https://github.com/Mintplex-Labs/anything-llm/commit/17e44e0c71fa782086aea9b3d2a7983a77e839b6) implement UI for recovery code modals/download recovery codes ### 📊 Changes **6 files changed** (+780 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/Modals/Password/MultiUserAuth.jsx` (+410 -53) 📝 `frontend/src/models/system.js` (+37 -0) 📝 `server/endpoints/system.js` (+147 -0) ➕ `server/models/passwordRecovery.js` (+101 -0) ➕ `server/prisma/migrations/20240409234222_init/migration.sql` (+47 -0) 📝 `server/prisma/schema.prisma` (+38 -13) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1072 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Add feature for allowing user to reset password ### Additional Information Add any other context about the Pull Request here that was not captured above. ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:34:03 -05:00
yindo closed this issue 2026-02-22 18:34:03 -05:00
yindo changed title from [PR #1073] [FEAT] Reset password flow to [PR #1073] [CLOSED] [FEAT] Reset password flow 2026-06-05 15:14:07 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3572