[PR #2663] [MERGED] feat: cloud storage test #5352

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2663
Author: @appflowy
Created: 5/30/2023
Status: Merged
Merged: 5/31/2023
Merged by: @appflowy

Base: developHead: feat/cloud_storage_test


📝 Commits (9)

  • 861db85 chore: show default user name
  • 7810bb4 chore: update
  • ec2bab2 feat: change collab storage type after auth type changed
  • ab3b91d chore: reload folder
  • 57d5abe Merge branch 'develop' into feat/cloud_storage_test
  • 968c15b chore: initial the group controller if need
  • 946721b chore: update patch
  • e3e86d0 chore: update patch ref
  • 548ac38 Merge branch 'develop' into feat/cloud_storage_test

📊 Changes

27 files changed (+397 additions, -284 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/menu_user.dart (+12 -14)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+15 -10)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+6 -6)
📝 frontend/rust-lib/Cargo.lock (+15 -10)
📝 frontend/rust-lib/Cargo.toml (+5 -5)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder2_deps.rs (+1 -1)
📝 frontend/rust-lib/flowy-core/src/integrate/server.rs (+11 -5)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+52 -63)
📝 frontend/rust-lib/flowy-database2/src/manager.rs (+15 -6)
📝 frontend/rust-lib/flowy-database2/src/services/cell/cell_operation.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs (+17 -7)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs (+51 -31)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/view_group.rs (+18 -15)
📝 frontend/rust-lib/flowy-database2/src/services/database_view/views.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/src/services/field/type_options/checklist_type_option/checklist.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/tests/database/cell_test/test.rs (+1 -1)
📝 frontend/rust-lib/flowy-database2/tests/database/share_test/export_test.rs (+1 -1)
📝 frontend/rust-lib/flowy-document2/src/manager.rs (+3 -3)
📝 frontend/rust-lib/flowy-folder2/Cargo.toml (+1 -1)
📝 frontend/rust-lib/flowy-folder2/src/manager.rs (+117 -71)

...and 7 more files

📄 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/2663 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/30/2023 **Status:** ✅ Merged **Merged:** 5/31/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `feat/cloud_storage_test` --- ### 📝 Commits (9) - [`861db85`](https://github.com/AppFlowy-IO/AppFlowy/commit/861db8590e00d24c9b8fd5a750ab71ac0ebf0d88) chore: show default user name - [`7810bb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/7810bb46d5e3ee394556dafb73959276f7ce433c) chore: update - [`ec2bab2`](https://github.com/AppFlowy-IO/AppFlowy/commit/ec2bab28e923218d16a11eae417d759b43d711d6) feat: change collab storage type after auth type changed - [`ab3b91d`](https://github.com/AppFlowy-IO/AppFlowy/commit/ab3b91d00964aba6113ff8d8525368d99ef8eec7) chore: reload folder - [`57d5abe`](https://github.com/AppFlowy-IO/AppFlowy/commit/57d5abe479dc3d24f9f5a2bab2eee4e4ee972789) Merge branch 'develop' into feat/cloud_storage_test - [`968c15b`](https://github.com/AppFlowy-IO/AppFlowy/commit/968c15b54db65d6e6b8b34b2685f552e60e80885) chore: initial the group controller if need - [`946721b`](https://github.com/AppFlowy-IO/AppFlowy/commit/946721bbf8b671a5e1216b58c4356a1a45169111) chore: update patch - [`e3e86d0`](https://github.com/AppFlowy-IO/AppFlowy/commit/e3e86d08e738c34820dd39b61427615941241a2e) chore: update patch ref - [`548ac38`](https://github.com/AppFlowy-IO/AppFlowy/commit/548ac38178fb038b20c1cfa6d166b1de56528ee5) Merge branch 'develop' into feat/cloud_storage_test ### 📊 Changes **27 files changed** (+397 additions, -284 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/menu_user.dart` (+12 -14) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+15 -10) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+6 -6) 📝 `frontend/rust-lib/Cargo.lock` (+15 -10) 📝 `frontend/rust-lib/Cargo.toml` (+5 -5) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder2_deps.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-core/src/integrate/server.rs` (+11 -5) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+52 -63) 📝 `frontend/rust-lib/flowy-database2/src/manager.rs` (+15 -6) 📝 `frontend/rust-lib/flowy-database2/src/services/cell/cell_operation.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/database/database_editor.rs` (+17 -7) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_editor.rs` (+51 -31) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/view_group.rs` (+18 -15) 📝 `frontend/rust-lib/flowy-database2/src/services/database_view/views.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/src/services/field/type_options/checklist_type_option/checklist.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/tests/database/cell_test/test.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database2/tests/database/share_test/export_test.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-document2/src/manager.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-folder2/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/flowy-folder2/src/manager.rs` (+117 -71) _...and 7 more files_ </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:18:21 +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#5352
No description provided.