[PR #1754] [MERGED] Feat/http server adapt #4932

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1754
Author: @appflowy
Created: 1/29/2023
Status: Merged
Merged: 1/30/2023
Merged by: @appflowy

Base: mainHead: feat/http_server_adapt


📝 Commits (9)

  • 4ac50b9 chore: refactor user model
  • 5a83eeb chore: extract server sync
  • 27e5fe0 chore: remove unused error code
  • 8afe919 chore: rename model crate
  • 3e17a12 chore: remove server config in flowy-net
  • b6cba08 chore: remove http-flowy crate ref
  • fe34353 chore: remove flowy-http-model
  • 35753e4 chore: remove unused crates
  • cb1fbe4 chore: add error code pb

📊 Changes

301 files changed (+2175 additions, -1762 deletions)

View changed files

📝 frontend/app_flowy/lib/core/network_monitor.dart (+7 -7)
📝 frontend/app_flowy/lib/user/presentation/splash_screen.dart (+0 -2)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+169 -158)
📝 frontend/rust-lib/Cargo.lock (+172 -219)
📝 frontend/rust-lib/Cargo.toml (+1 -1)
📝 frontend/rust-lib/dart-ffi/Cargo.toml (+0 -1)
📝 frontend/rust-lib/flowy-client-sync/Cargo.toml (+6 -9)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/document_pad.rs (+16 -24)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/delete/default_delete.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/delete/mod.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/delete/preserve_line_format_merge.rs (+1 -1)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/format_at_position.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/mod.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/resolve_block_format.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/resolve_inline_format.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/helper.rs (+2 -2)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/auto_exit_block.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/auto_format.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/default_insert.rs (+0 -0)
📝 frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/mod.rs (+0 -0)

...and 80 more files

📄 Description

Fix HTTP-server build errors by refactoring crates Hierarchy


🔄 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/1754 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 1/29/2023 **Status:** ✅ Merged **Merged:** 1/30/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/http_server_adapt` --- ### 📝 Commits (9) - [`4ac50b9`](https://github.com/AppFlowy-IO/AppFlowy/commit/4ac50b9c07c8ca9c0d955445a57de02d623985a9) chore: refactor user model - [`5a83eeb`](https://github.com/AppFlowy-IO/AppFlowy/commit/5a83eeb86caa31399935732af77522db2a54826a) chore: extract server sync - [`27e5fe0`](https://github.com/AppFlowy-IO/AppFlowy/commit/27e5fe01ba5a8529bdba35a3a07946f5b870572b) chore: remove unused error code - [`8afe919`](https://github.com/AppFlowy-IO/AppFlowy/commit/8afe91982a84d7e6b84cdced22385267f98faa7c) chore: rename model crate - [`3e17a12`](https://github.com/AppFlowy-IO/AppFlowy/commit/3e17a12db71bdc561ac8b253a3e8e681fb0843e1) chore: remove server config in flowy-net - [`b6cba08`](https://github.com/AppFlowy-IO/AppFlowy/commit/b6cba0895aec7544854accd1ea31c158d1707072) chore: remove http-flowy crate ref - [`fe34353`](https://github.com/AppFlowy-IO/AppFlowy/commit/fe343532f458ad0b464da4885078800efed36919) chore: remove flowy-http-model - [`35753e4`](https://github.com/AppFlowy-IO/AppFlowy/commit/35753e499878a7800291cad7a221002a22b047c9) chore: remove unused crates - [`cb1fbe4`](https://github.com/AppFlowy-IO/AppFlowy/commit/cb1fbe40353f24f680c5c478a4b50fecff57eb59) chore: add error code pb ### 📊 Changes **301 files changed** (+2175 additions, -1762 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/core/network_monitor.dart` (+7 -7) 📝 `frontend/app_flowy/lib/user/presentation/splash_screen.dart` (+0 -2) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+169 -158) 📝 `frontend/rust-lib/Cargo.lock` (+172 -219) 📝 `frontend/rust-lib/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/dart-ffi/Cargo.toml` (+0 -1) 📝 `frontend/rust-lib/flowy-client-sync/Cargo.toml` (+6 -9) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/document_pad.rs` (+16 -24) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/delete/default_delete.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/delete/mod.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/delete/preserve_line_format_merge.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/format_at_position.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/mod.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/resolve_block_format.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/format/resolve_inline_format.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/helper.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/auto_exit_block.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/auto_format.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/default_insert.rs` (+0 -0) 📝 `frontend/rust-lib/flowy-client-sync/src/client_document/extensions/insert/mod.rs` (+0 -0) _...and 80 more files_ </details> ### 📄 Description Fix HTTP-server build errors by refactoring crates Hierarchy --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:16:27 +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#4932
No description provided.