[PR #4299] [MERGED] feat: initial file upload api #6182

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4299
Author: @speed2exe
Created: 1/4/2024
Status: Merged
Merged: 1/16/2024
Merged by: @appflowy

Base: mainHead: file_upload


📝 Commits (10+)

📊 Changes

30 files changed (+757 additions, -403 deletions)

View changed files

📝 .github/workflows/flutter_ci.yaml (+3 -1)
📝 .github/workflows/rust_ci.yaml (+1 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+85 -31)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+2 -6)
📝 frontend/rust-lib/Cargo.lock (+4 -0)
📝 frontend/rust-lib/Cargo.toml (+1 -1)
📝 frontend/rust-lib/event-integration/tests/document/supabase_test/file_test.rs (+118 -118)
📝 frontend/rust-lib/flowy-core/src/deps_resolve/document_deps.rs (+2 -2)
📝 frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs (+17 -9)
📝 frontend/rust-lib/flowy-core/src/lib.rs (+2 -2)
📝 frontend/rust-lib/flowy-document/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-document/src/entities.rs (+24 -0)
📝 frontend/rust-lib/flowy-document/src/event_handler.rs (+48 -1)
📝 frontend/rust-lib/flowy-document/src/event_map.rs (+10 -0)
📝 frontend/rust-lib/flowy-document/src/manager.rs (+84 -4)
📝 frontend/rust-lib/flowy-document/tests/document/util.rs (+17 -7)
frontend/rust-lib/flowy-document/tests/file_storage.rs (+1 -0)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/file_storage.rs (+36 -10)
📝 frontend/rust-lib/flowy-server/src/af_cloud/server.rs (+2 -2)
📝 frontend/rust-lib/flowy-server/src/local_server/server.rs (+2 -2)

...and 10 more files

📄 Description

  • File Upload API

🔄 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/4299 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 1/4/2024 **Status:** ✅ Merged **Merged:** 1/16/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `file_upload` --- ### 📝 Commits (10+) - [`2364f8d`](https://github.com/AppFlowy-IO/AppFlowy/commit/2364f8ddf608dea2d8f9a4289860d35ee84e5c2b) feat: initial file upload api - [`f45f558`](https://github.com/AppFlowy-IO/AppFlowy/commit/f45f55823269c16796e9377874b85954f6e07e28) feat: initial file upload api - [`acdbba9`](https://github.com/AppFlowy-IO/AppFlowy/commit/acdbba9403738e6580d911d216453a565ea77063) fix: add pb index - [`ddc9ead`](https://github.com/AppFlowy-IO/AppFlowy/commit/ddc9ead958cf2fe471f9dfed41f24fd347f0f798) chore: merge with main - [`e88d57b`](https://github.com/AppFlowy-IO/AppFlowy/commit/e88d57bb61c94f0ec1e61b0f8b4b117cfeccd8ca) chore: merge with main - [`be3d200`](https://github.com/AppFlowy-IO/AppFlowy/commit/be3d2005fe74d52b4f9e78a762124211a99d44dc) chore: merge with main - [`8142913`](https://github.com/AppFlowy-IO/AppFlowy/commit/8142913de97d1c04dadd3737a654f8c2f930c0a7) feat: remove file name - [`7c683ec`](https://github.com/AppFlowy-IO/AppFlowy/commit/7c683ec72d439467f2d2316e58e420d24c401cdf) feat: read everything to mem - [`b2083b8`](https://github.com/AppFlowy-IO/AppFlowy/commit/b2083b8ab24a5c77487785e560f1d94d18f76f30) chore: merge with main - [`847b7f7`](https://github.com/AppFlowy-IO/AppFlowy/commit/847b7f7f0fe3d53e182f2a1d9b9d4efa0de1a7ef) feat: revamp object storage ### 📊 Changes **30 files changed** (+757 additions, -403 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/flutter_ci.yaml` (+3 -1) 📝 `.github/workflows/rust_ci.yaml` (+1 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+85 -31) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+2 -6) 📝 `frontend/rust-lib/Cargo.lock` (+4 -0) 📝 `frontend/rust-lib/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/event-integration/tests/document/supabase_test/file_test.rs` (+118 -118) 📝 `frontend/rust-lib/flowy-core/src/deps_resolve/document_deps.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-core/src/integrate/trait_impls.rs` (+17 -9) 📝 `frontend/rust-lib/flowy-core/src/lib.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-document/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-document/src/entities.rs` (+24 -0) 📝 `frontend/rust-lib/flowy-document/src/event_handler.rs` (+48 -1) 📝 `frontend/rust-lib/flowy-document/src/event_map.rs` (+10 -0) 📝 `frontend/rust-lib/flowy-document/src/manager.rs` (+84 -4) 📝 `frontend/rust-lib/flowy-document/tests/document/util.rs` (+17 -7) ➕ `frontend/rust-lib/flowy-document/tests/file_storage.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/file_storage.rs` (+36 -10) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/server.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-server/src/local_server/server.rs` (+2 -2) _...and 10 more files_ </details> ### 📄 Description - File Upload API --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:22:05 +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#6182
No description provided.