[PR #3086] [MERGED] feat: implement magic link login #5555

Closed
opened 2026-03-23 22:19:16 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3086
Author: @appflowy
Created: 7/31/2023
Status: Merged
Merged: 8/3/2023
Merged by: @appflowy

Base: mainHead: supabase_magic_link


📝 Commits (7)

  • 45b0989 feat: implement magic link login
  • 5de3e9f ci: create env file
  • d61e3e3 ci: generate flutter env files
  • 5457e13 ci: disable inject env
  • 55c68fc chore: update table name
  • a76074f Update frontend/appflowy_flutter/lib/env/env.dart
  • 8e5c9b1 chore: fix compile

📊 Changes

17 files changed (+244 additions, -82 deletions)

View changed files

📝 .github/workflows/release.yml (+8 -0)
📝 frontend/appflowy_flutter/lib/env/env.dart (+11 -9)
📝 frontend/appflowy_flutter/lib/startup/deps_resolver.dart (+6 -2)
📝 frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart (+3 -2)
📝 frontend/appflowy_flutter/lib/user/application/auth/appflowy_auth_service.dart (+18 -2)
📝 frontend/appflowy_flutter/lib/user/application/auth/auth_service.dart (+5 -0)
📝 frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart (+83 -40)
📝 frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart (+33 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/sign_in_screen.dart (+23 -23)
📝 frontend/appflowy_flutter/lib/user/presentation/splash_screen.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart (+1 -1)
📝 frontend/rust-lib/flowy-server/src/supabase/api/collab_storage.rs (+1 -1)
frontend/scripts/code_generation/env/generate_env.cmd (+17 -0)
frontend/scripts/code_generation/env/generate_env.sh (+19 -0)
📝 frontend/scripts/code_generation/generate.cmd (+7 -0)
📝 frontend/scripts/code_generation/generate.sh (+7 -0)

📄 Description

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/3086 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/31/2023 **Status:** ✅ Merged **Merged:** 8/3/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `supabase_magic_link` --- ### 📝 Commits (7) - [`45b0989`](https://github.com/AppFlowy-IO/AppFlowy/commit/45b09890cea71a7d55c118c9beb079e3a9e4ba69) feat: implement magic link login - [`5de3e9f`](https://github.com/AppFlowy-IO/AppFlowy/commit/5de3e9f33706e87b69fdee62946de48284021ed8) ci: create env file - [`d61e3e3`](https://github.com/AppFlowy-IO/AppFlowy/commit/d61e3e36a13cef6a70fa9795344d6af188500084) ci: generate flutter env files - [`5457e13`](https://github.com/AppFlowy-IO/AppFlowy/commit/5457e13cb1c63de6fa5131a99926e3bae921d1d1) ci: disable inject env - [`55c68fc`](https://github.com/AppFlowy-IO/AppFlowy/commit/55c68fc8740646313838d0214c4fda7afb33040c) chore: update table name - [`a76074f`](https://github.com/AppFlowy-IO/AppFlowy/commit/a76074fc5ae129f676b56fec40cacb8a5968973f) Update frontend/appflowy_flutter/lib/env/env.dart - [`8e5c9b1`](https://github.com/AppFlowy-IO/AppFlowy/commit/8e5c9b18674cedbdd116780d088835f060da5b83) chore: fix compile ### 📊 Changes **17 files changed** (+244 additions, -82 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/release.yml` (+8 -0) 📝 `frontend/appflowy_flutter/lib/env/env.dart` (+11 -9) 📝 `frontend/appflowy_flutter/lib/startup/deps_resolver.dart` (+6 -2) 📝 `frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart` (+3 -2) 📝 `frontend/appflowy_flutter/lib/user/application/auth/appflowy_auth_service.dart` (+18 -2) 📝 `frontend/appflowy_flutter/lib/user/application/auth/auth_service.dart` (+5 -0) 📝 `frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart` (+83 -40) 📝 `frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart` (+33 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/sign_in_screen.dart` (+23 -23) 📝 `frontend/appflowy_flutter/lib/user/presentation/splash_screen.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart` (+1 -1) 📝 `frontend/rust-lib/flowy-server/src/supabase/api/collab_storage.rs` (+1 -1) ➕ `frontend/scripts/code_generation/env/generate_env.cmd` (+17 -0) ➕ `frontend/scripts/code_generation/env/generate_env.sh` (+19 -0) 📝 `frontend/scripts/code_generation/generate.cmd` (+7 -0) 📝 `frontend/scripts/code_generation/generate.sh` (+7 -0) </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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 22:19:16 +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#5555
No description provided.