[PR #3873] [MERGED] Fix af cloud sync auth #5924

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3873
Author: @appflowy
Created: 11/4/2023
Status: Merged
Merged: 11/5/2023
Merged by: @appflowy

Base: mainHead: fix_af_cloud_sync_auth


📝 Commits (10+)

📊 Changes

59 files changed (+658 additions, -478 deletions)

View changed files

📝 frontend/appflowy_flutter/dev.env (+18 -8)
📝 frontend/appflowy_flutter/lib/env/backend_env.dart (+3 -6)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+5 -2)
📝 frontend/appflowy_flutter/lib/user/application/user_service.dart (+3 -8)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/workspace_start_screen/desktop_workspace_start_screen.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/workspace_start_screen/mobile_workspace_start_screen.dart (+0 -2)
📝 frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_bloc.dart (+0 -21)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/appflowy_backend.dart (+2 -5)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+42 -34)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+9 -9)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/user/user_bd_svc.ts (+0 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/workspace_bd_svc.ts (+4 -4)
📝 frontend/rust-lib/Cargo.lock (+44 -36)
📝 frontend/rust-lib/Cargo.toml (+9 -9)
📝 frontend/rust-lib/event-integration/src/folder_event.rs (+0 -9)
📝 frontend/rust-lib/event-integration/tests/document/af_cloud_test/edit_test.rs (+1 -1)
📝 frontend/rust-lib/flowy-core/src/integrate/server.rs (+1 -14)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+18 -4)
📝 frontend/rust-lib/flowy-core/src/integrate/user.rs (+23 -5)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+0 -1)

...and 39 more files

📄 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/AppFlowy-IO/AppFlowy/pull/3873 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 11/4/2023 **Status:** ✅ Merged **Merged:** 11/5/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_af_cloud_sync_auth` --- ### 📝 Commits (10+) - [`2ab9e36`](https://github.com/AppFlowy-IO/AppFlowy/commit/2ab9e36a01c251855bbb0e0ac16c1c8cabbfe7cb) feat: open workspace - [`4844793`](https://github.com/AppFlowy-IO/AppFlowy/commit/48447932f280797b6cdf4f6d8b913827e5e9daef) chore: update env docs - [`3c6c033`](https://github.com/AppFlowy-IO/AppFlowy/commit/3c6c03350fd83f4db3b29b513e6d4087f856467d) fix: invalid user callback - [`74b1d09`](https://github.com/AppFlowy-IO/AppFlowy/commit/74b1d09156162c00e8fe31b638e8e6f2eade6b25) fix: token invalid - [`0f7d7f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/0f7d7f39d7c8c1664cfa35c048b8fbc42c2256aa) chore: update - [`ad1f461`](https://github.com/AppFlowy-IO/AppFlowy/commit/ad1f461a0ae285c37d848146447748d59271f0c6) chore: update - [`4cbbb48`](https://github.com/AppFlowy-IO/AppFlowy/commit/4cbbb48c4c0b945e2e75130f5689d971f4fff884) Merge branch 'main' into fix_af_cloud_sync_auth - [`e79846a`](https://github.com/AppFlowy-IO/AppFlowy/commit/e79846a2ced3789dbeb3a6d84a9c8dd9825d75b3) chore: update - [`a7e035d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a7e035d3ca466e2e21c46f79f7ebe95234ba2413) chore: fix test - [`68dd9d8`](https://github.com/AppFlowy-IO/AppFlowy/commit/68dd9d8a6de2856d9a975a85e06e57d14f897cc0) chore: fix tauri build ### 📊 Changes **59 files changed** (+658 additions, -478 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/dev.env` (+18 -8) 📝 `frontend/appflowy_flutter/lib/env/backend_env.dart` (+3 -6) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+5 -2) 📝 `frontend/appflowy_flutter/lib/user/application/user_service.dart` (+3 -8) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/workspace_start_screen/desktop_workspace_start_screen.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/workspace_start_screen/mobile_workspace_start_screen.dart` (+0 -2) 📝 `frontend/appflowy_flutter/lib/workspace/application/workspace/workspace_bloc.dart` (+0 -21) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/appflowy_backend.dart` (+2 -5) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+42 -34) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+9 -9) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/user/user_bd_svc.ts` (+0 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/effects/workspace/workspace_bd_svc.ts` (+4 -4) 📝 `frontend/rust-lib/Cargo.lock` (+44 -36) 📝 `frontend/rust-lib/Cargo.toml` (+9 -9) 📝 `frontend/rust-lib/event-integration/src/folder_event.rs` (+0 -9) 📝 `frontend/rust-lib/event-integration/tests/document/af_cloud_test/edit_test.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-core/src/integrate/server.rs` (+1 -14) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+18 -4) 📝 `frontend/rust-lib/flowy-core/src/integrate/user.rs` (+23 -5) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+0 -1) _...and 39 more files_ </details> ### 📄 Description _No description provided_ --- <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:55 +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#5924
No description provided.