[PR #3359] [MERGED] feat: integrate appflowy-cloud #5691

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3359
Author: @speed2exe
Created: 9/7/2023
Status: Merged
Merged: 9/17/2023
Merged by: @appflowy

Base: mainHead: integration/cloud


📝 Commits (10+)

  • cd947b3 feat: draft: code dependency
  • 426a932 chore: update ref
  • 0d552de chore: merge with main
  • 08cb417 chore: merge with main
  • 360b3ea feat: signup using client_api
  • a8b1a1c feat: support auto sign_in after sign_up if already confirmed(WIP)
  • 208524c chore: update collab commit id
  • 6556781 chore: Merge branch 'main' into integration/cloud
  • 4712010 chore: fix compile errors
  • 54f0f78 chore: user AFServer trait to provide optional service

📊 Changes

94 files changed (+2675 additions, -2892 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+382 -109)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+19 -11)
📝 frontend/rust-lib/Cargo.lock (+874 -769)
📝 frontend/rust-lib/Cargo.toml (+44 -10)
frontend/rust-lib/collab-integrate/Cargo.toml (+28 -0)
frontend/rust-lib/collab-integrate/src/collab_builder.rs (+261 -0)
frontend/rust-lib/collab-integrate/src/config.rs (+70 -0)
frontend/rust-lib/collab-integrate/src/lib.rs (+26 -0)
📝 frontend/rust-lib/dart-ffi/Cargo.toml (+7 -7)
📝 frontend/rust-lib/flowy-config/Cargo.toml (+5 -3)
📝 frontend/rust-lib/flowy-core/Cargo.toml (+22 -21)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/collab_deps.rs (+3 -3)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/database_deps.rs (+2 -2)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/document_deps.rs (+2 -3)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs (+2 -2)
📝 frontend/rust-lib/flowy-core/src/integrate/mod.rs (+1 -0)
📝 frontend/rust-lib/flowy-core/src/integrate/server.rs (+54 -312)
frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+321 -0)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+14 -16)

...and 74 more files

📄 Description

Feature Preview


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/3359 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 9/7/2023 **Status:** ✅ Merged **Merged:** 9/17/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `integration/cloud` --- ### 📝 Commits (10+) - [`cd947b3`](https://github.com/AppFlowy-IO/AppFlowy/commit/cd947b3c97e901cc057f17d2415f0a87a0362ac1) feat: draft: code dependency - [`426a932`](https://github.com/AppFlowy-IO/AppFlowy/commit/426a93251096c9e563fed518f50d2b5280da2919) chore: update ref - [`0d552de`](https://github.com/AppFlowy-IO/AppFlowy/commit/0d552de1b886a5b8b406cd2ee055a9fbe83b7ad1) chore: merge with main - [`08cb417`](https://github.com/AppFlowy-IO/AppFlowy/commit/08cb417492a037b982c914ff08fc1e0aafc1bb84) chore: merge with main - [`360b3ea`](https://github.com/AppFlowy-IO/AppFlowy/commit/360b3eabd24346c87844fcba02c30ef3fbb0fc9d) feat: signup using client_api - [`a8b1a1c`](https://github.com/AppFlowy-IO/AppFlowy/commit/a8b1a1cb94250a7b3fc9eb8e7b00d4be088d62b0) feat: support auto sign_in after sign_up if already confirmed(WIP) - [`208524c`](https://github.com/AppFlowy-IO/AppFlowy/commit/208524c0cb3e05a8eb6bead7953c16f1c5595407) chore: update collab commit id - [`6556781`](https://github.com/AppFlowy-IO/AppFlowy/commit/65567818f5904ffc0b7cc8133cb8950cf2f4a4ab) chore: Merge branch 'main' into integration/cloud - [`4712010`](https://github.com/AppFlowy-IO/AppFlowy/commit/4712010b50dd3cf7671488d4ea53a1ce73257ffe) chore: fix compile errors - [`54f0f78`](https://github.com/AppFlowy-IO/AppFlowy/commit/54f0f78037a073fd332e5a6cfca1ee2ffaf40bca) chore: user AFServer trait to provide optional service ### 📊 Changes **94 files changed** (+2675 additions, -2892 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+382 -109) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+19 -11) 📝 `frontend/rust-lib/Cargo.lock` (+874 -769) 📝 `frontend/rust-lib/Cargo.toml` (+44 -10) ➕ `frontend/rust-lib/collab-integrate/Cargo.toml` (+28 -0) ➕ `frontend/rust-lib/collab-integrate/src/collab_builder.rs` (+261 -0) ➕ `frontend/rust-lib/collab-integrate/src/config.rs` (+70 -0) ➕ `frontend/rust-lib/collab-integrate/src/lib.rs` (+26 -0) 📝 `frontend/rust-lib/dart-ffi/Cargo.toml` (+7 -7) 📝 `frontend/rust-lib/flowy-config/Cargo.toml` (+5 -3) 📝 `frontend/rust-lib/flowy-core/Cargo.toml` (+22 -21) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/collab_deps.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/database_deps.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/document_deps.rs` (+2 -3) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-core/src/integrate/mod.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-core/src/integrate/server.rs` (+54 -312) ➕ `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+321 -0) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+14 -16) _...and 74 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 <!--- 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 - [ ] 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:52 +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#5691
No description provided.