[PR #7789] [MERGED] chore: implement local unsupported methods #8114

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/7789
Author: @appflowy
Created: 4/20/2025
Status: Merged
Merged: 4/20/2025
Merged by: @appflowy

Base: mainHead: imple_local_unsupprot


📝 Commits (6)

  • fa798f3 chore: workspace usage
  • 791a79a chore: impl local unspport
  • 92d5690 chore: pass folder init data
  • 2ee786f chore: update logs
  • cf46213 chore: Update frontend/rust-lib/flowy-folder/src/manager.rs
  • c6010a6 chore: fmt

📊 Changes

30 files changed (+484 additions, -253 deletions)

View changed files

📝 frontend/rust-lib/Cargo.lock (+9 -8)
📝 frontend/rust-lib/Cargo.toml (+8 -8)
📝 frontend/rust-lib/flowy-ai/src/ai_manager.rs (+1 -1)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps/folder_deps_chat_impl.rs (+4 -4)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps/folder_deps_database_impl.rs (+3 -1)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+6 -0)
📝 frontend/rust-lib/flowy-core/src/user_state_callback.rs (+80 -39)
📝 frontend/rust-lib/flowy-folder/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-folder/src/manager.rs (+20 -37)
📝 frontend/rust-lib/flowy-server/src/af_cloud/define.rs (+4 -0)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/chat.rs (+2 -2)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs (+5 -26)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/chat.rs (+20 -20)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/database.rs (+20 -22)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/folder.rs (+32 -2)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/user.rs (+138 -15)
📝 frontend/rust-lib/flowy-server/src/local_server/mod.rs (+1 -0)
📝 frontend/rust-lib/flowy-server/src/local_server/server.rs (+11 -7)
frontend/rust-lib/flowy-server/src/local_server/util.rs (+47 -0)
📝 frontend/rust-lib/flowy-server/tests/af_cloud_test/util.rs (+7 -3)

...and 10 more files

📄 Description

Feature Preview


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.

Summary by Sourcery

Implement local server support for various user-related and workspace-related functionalities in the AppFlowy application

New Features:

  • Added support for workspace member information retrieval
  • Implemented local workspace settings management
  • Enhanced local server workspace usage tracking

Bug Fixes:

  • Fixed database connection handling in various service implementations
  • Corrected method signatures to support local server operations

Enhancements:

  • Refactored local server implementations to support more comprehensive user and workspace operations
  • Updated database and service interactions to handle local server scenarios

Chores:

  • Updated dependency versions for collaboration libraries
  • Refactored method signatures across multiple service implementations

🔄 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/7789 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 4/20/2025 **Status:** ✅ Merged **Merged:** 4/20/2025 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `imple_local_unsupprot` --- ### 📝 Commits (6) - [`fa798f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/fa798f3ecd95a5f98d1e0891bb68abac00f7b6a2) chore: workspace usage - [`791a79a`](https://github.com/AppFlowy-IO/AppFlowy/commit/791a79a2341b3744727e1a8378b97f2701a39902) chore: impl local unspport - [`92d5690`](https://github.com/AppFlowy-IO/AppFlowy/commit/92d5690bba8e417ee11aa34c8a72b36886e80134) chore: pass folder init data - [`2ee786f`](https://github.com/AppFlowy-IO/AppFlowy/commit/2ee786f3512a8d631ac084596fd1716dd5a147c0) chore: update logs - [`cf46213`](https://github.com/AppFlowy-IO/AppFlowy/commit/cf46213e0019b1b1228479598b1e46b5d7d1d71c) chore: Update frontend/rust-lib/flowy-folder/src/manager.rs - [`c6010a6`](https://github.com/AppFlowy-IO/AppFlowy/commit/c6010a6734a7b7c61d7ce306be96735f00a91f0b) chore: fmt ### 📊 Changes **30 files changed** (+484 additions, -253 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/Cargo.lock` (+9 -8) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/flowy-ai/src/ai_manager.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps/folder_deps_chat_impl.rs` (+4 -4) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/folder_deps/folder_deps_database_impl.rs` (+3 -1) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+6 -0) 📝 `frontend/rust-lib/flowy-core/src/user_state_callback.rs` (+80 -39) 📝 `frontend/rust-lib/flowy-folder/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-folder/src/manager.rs` (+20 -37) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/define.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/chat.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs` (+5 -26) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/chat.rs` (+20 -20) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/database.rs` (+20 -22) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/folder.rs` (+32 -2) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/user.rs` (+138 -15) 📝 `frontend/rust-lib/flowy-server/src/local_server/mod.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-server/src/local_server/server.rs` (+11 -7) ➕ `frontend/rust-lib/flowy-server/src/local_server/util.rs` (+47 -0) 📝 `frontend/rust-lib/flowy-server/tests/af_cloud_test/util.rs` (+7 -3) _...and 10 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 [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. ## Summary by Sourcery Implement local server support for various user-related and workspace-related functionalities in the AppFlowy application New Features: - Added support for workspace member information retrieval - Implemented local workspace settings management - Enhanced local server workspace usage tracking Bug Fixes: - Fixed database connection handling in various service implementations - Corrected method signatures to support local server operations Enhancements: - Refactored local server implementations to support more comprehensive user and workspace operations - Updated database and service interactions to handle local server scenarios Chores: - Updated dependency versions for collaboration libraries - Refactored method signatures across multiple service implementations --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:22:40 +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#8114
No description provided.