[PR #5036] [MERGED] feat: implement magic link sign in #6596

Closed
opened 2026-03-23 23:15:39 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5036
Author: @LucasXu0
Created: 4/2/2024
Status: Merged
Merged: 4/11/2024
Merged by: @LucasXu0

Base: mainHead: magic_link


📝 Commits (10+)

  • 5212f80 feat: implement magic link sign in
  • b52269d Merge branch 'main' into magic_link
  • 593c57f feat: magic link
  • 998f559 feat: add anonymous sign in button
  • 5bbbbc1 feat: add magic link on mobile
  • 1c218a3 Merge branch 'main' into magic_link
  • 578dcb8 chore: upgrade client-api
  • d348b18 chore: fix rust ci
  • 498e9d0 feat: improve sign in with maglic link process
  • 260f536 test: fix flutter tests

📊 Changes

81 files changed (+591 additions, -465 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/cloud/anon_user_continue_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_add_row_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_group_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_hide_groups_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/board/board_row_test.dart (+4 -4)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_calendar_test.dart (+5 -5)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_cell_test.dart (+10 -10)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_field_settings_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_field_test.dart (+12 -12)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_reminder_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_row_page_test.dart (+11 -11)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_row_test.dart (+4 -4)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_setting_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/database/database_view_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_alignment_test.dart (+2 -2)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_codeblock_paste_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_create_and_delete_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_inline_page_reference_test.dart (+3 -3)
📝 frontend/appflowy_flutter/integration_test/desktop/document/document_option_action_test.dart (+1 -1)

...and 61 more files

📄 Description

Feature Preview

Users signing in with a magic link will receive an email. They can click the callback link from their mailbox to launch AppFlowy.

Screenshot 2024-04-10 at 20 33 27

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/AppFlowy-IO/AppFlowy/pull/5036 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 4/2/2024 **Status:** ✅ Merged **Merged:** 4/11/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `magic_link` --- ### 📝 Commits (10+) - [`5212f80`](https://github.com/AppFlowy-IO/AppFlowy/commit/5212f800669b165ecc7c4c7aee1e2afbdfea4a8e) feat: implement magic link sign in - [`b52269d`](https://github.com/AppFlowy-IO/AppFlowy/commit/b52269d79e570b0174b103f34bdc5abf0829eeca) Merge branch 'main' into magic_link - [`593c57f`](https://github.com/AppFlowy-IO/AppFlowy/commit/593c57f2b0c2a352859f101243dad78364b73472) feat: magic link - [`998f559`](https://github.com/AppFlowy-IO/AppFlowy/commit/998f5595736b6beeae1eb58fe1c63c50c2c02e7e) feat: add anonymous sign in button - [`5bbbbc1`](https://github.com/AppFlowy-IO/AppFlowy/commit/5bbbbc10d66a8825e05071bc91a9933b7a56afd8) feat: add magic link on mobile - [`1c218a3`](https://github.com/AppFlowy-IO/AppFlowy/commit/1c218a319d69677a7af894b2cb72fa8d48972c30) Merge branch 'main' into magic_link - [`578dcb8`](https://github.com/AppFlowy-IO/AppFlowy/commit/578dcb86c1f11a1390c46010ea55880079a9e169) chore: upgrade client-api - [`d348b18`](https://github.com/AppFlowy-IO/AppFlowy/commit/d348b18f499585feb418c210c81f56cd193f353c) chore: fix rust ci - [`498e9d0`](https://github.com/AppFlowy-IO/AppFlowy/commit/498e9d0c2d95f3d12ad75087f65c62764c2875af) feat: improve sign in with maglic link process - [`260f536`](https://github.com/AppFlowy-IO/AppFlowy/commit/260f536252985bb0609c549ed0a957957998c396) test: fix flutter tests ### 📊 Changes **81 files changed** (+591 additions, -465 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/cloud/anon_user_continue_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_add_row_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_group_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_hide_groups_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/board/board_row_test.dart` (+4 -4) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_calendar_test.dart` (+5 -5) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_cell_test.dart` (+10 -10) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_field_settings_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_field_test.dart` (+12 -12) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_reminder_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_row_page_test.dart` (+11 -11) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_row_test.dart` (+4 -4) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_setting_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/database/database_view_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_alignment_test.dart` (+2 -2) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_codeblock_paste_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_copy_and_paste_test.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_create_and_delete_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_inline_page_reference_test.dart` (+3 -3) 📝 `frontend/appflowy_flutter/integration_test/desktop/document/document_option_action_test.dart` (+1 -1) _...and 61 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview Users signing in with a magic link will receive an email. They can click the callback link from their mailbox to launch AppFlowy. <img width="1443" alt="Screenshot 2024-04-10 at 20 33 27" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/e5355c96-0751-4a7d-8d7d-73203a62af76"> <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [x] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:15:39 +00: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
AppFlowy-IO/AppFlowy#6596
No description provided.