[PR #3592] [MERGED] chore: sign in with provider #5780

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

📋 Pull Request Information

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

Base: mainHead: feat/af_cloud_user_auth


📝 Commits (8)

📊 Changes

45 files changed (+712 additions, -360 deletions)

View changed files

📝 frontend/.vscode/tasks.json (+8 -0)
📝 frontend/appflowy_flutter/dev.env (+6 -4)
📝 frontend/appflowy_flutter/lib/env/env.dart (+28 -3)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+2 -1)
📝 frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/application/auth/af_cloud_auth_service.dart (+95 -2)
📝 frontend/appflowy_flutter/lib/user/application/auth/auth_error.dart (+12 -0)
📝 frontend/appflowy_flutter/lib/user/application/auth/auth_service.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/user/application/auth/supabase_mock_auth_service.dart (+2 -2)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart (+6 -5)
📝 frontend/appflowy_flutter/pubspec.lock (+1 -1)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+25 -31)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+9 -9)
📝 frontend/rust-lib/Cargo.lock (+26 -32)
📝 frontend/rust-lib/Cargo.toml (+9 -9)
📝 frontend/rust-lib/collab-integrate/Cargo.toml (+2 -0)
📝 frontend/rust-lib/collab-integrate/src/collab_builder.rs (+47 -34)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+39 -33)

...and 25 more files

📄 Description

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/3592 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/3/2023 **Status:** ✅ Merged **Merged:** 10/7/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/af_cloud_user_auth` --- ### 📝 Commits (8) - [`584ad3f`](https://github.com/AppFlowy-IO/AppFlowy/commit/584ad3fc1431024c3597b6fa0de5e3d9c4478a8a) chore: sign in with provider - [`f7c1244`](https://github.com/AppFlowy-IO/AppFlowy/commit/f7c124482bf5ff0e9955f7756657a86daa6b7da6) feat: implement oauth flow of appflowy cloud - [`85255f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/85255f3478d2c353234709809d2669229bcd0c74) chore: rename env - [`80b386d`](https://github.com/AppFlowy-IO/AppFlowy/commit/80b386d69883fa76db7772803d3beca677c843cb) chore: fix deadlock - [`8f91d9a`](https://github.com/AppFlowy-IO/AppFlowy/commit/8f91d9a2a81100a6c0a767a165422b71ac95b6f7) fix: login bugs - [`01068c7`](https://github.com/AppFlowy-IO/AppFlowy/commit/01068c779b9c56530577c698735bfdb8d490aa52) chore: clippyt - [`58eadc5`](https://github.com/AppFlowy-IO/AppFlowy/commit/58eadc55663d47b3bca9f7fd8f9b9f96548a93de) chore: update client api - [`c9ec38c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c9ec38c693b2a583bf70adbab18a51bbd06b544a) chore: fmt ### 📊 Changes **45 files changed** (+712 additions, -360 deletions) <details> <summary>View changed files</summary> 📝 `frontend/.vscode/tasks.json` (+8 -0) 📝 `frontend/appflowy_flutter/dev.env` (+6 -4) 📝 `frontend/appflowy_flutter/lib/env/env.dart` (+28 -3) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+2 -1) 📝 `frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/application/auth/af_cloud_auth_service.dart` (+95 -2) 📝 `frontend/appflowy_flutter/lib/user/application/auth/auth_error.dart` (+12 -0) 📝 `frontend/appflowy_flutter/lib/user/application/auth/auth_service.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/user/application/auth/supabase_mock_auth_service.dart` (+2 -2) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart` (+6 -5) 📝 `frontend/appflowy_flutter/pubspec.lock` (+1 -1) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+25 -31) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/Cargo.lock` (+26 -32) 📝 `frontend/rust-lib/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/collab-integrate/Cargo.toml` (+2 -0) 📝 `frontend/rust-lib/collab-integrate/src/collab_builder.rs` (+47 -34) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+39 -33) _...and 25 more files_ </details> ### 📄 Description #### PR Checklist - [ ] 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 22:20:17 +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#5780
No description provided.