[PR #4752] [CLOSED] Workspace api #6427

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4752
Author: @speed2exe
Created: 2/27/2024
Status: Closed

Base: mainHead: workspace-api


📝 Commits (8)

  • 2d05bb5 feat: add rename-workspace
  • 43f78d6 chore: handle error for uuid parsing
  • 4bd4efa chore: merge with main
  • 34bf837 feat: add test for rename workspace
  • ee42dbb feat: added change icon for workspace
  • c9b136f feat: added icon and created_at field
  • d3757fc fix: wasm build
  • 2159fca Merge branch 'main' into workspace-api

📊 Changes

25 files changed (+296 additions, -100 deletions)

View changed files

📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+12 -12)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+1 -1)
📝 frontend/appflowy_web/wasm-libs/Cargo.lock (+26 -12)
📝 frontend/appflowy_web/wasm-libs/Cargo.toml (+1 -1)
📝 frontend/appflowy_web/wasm-libs/af-user/src/event_handler.rs (+2 -2)
📝 frontend/appflowy_web/wasm-libs/af-user/src/manager.rs (+3 -3)
📝 frontend/appflowy_web/wasm-libs/af-user/src/protobuf/mod.rs (+3 -3)
📝 frontend/appflowy_web/wasm-libs/af-wasm/src/integrate/server.rs (+1 -1)
📝 frontend/rust-lib/Cargo.lock (+11 -11)
📝 frontend/rust-lib/Cargo.toml (+1 -1)
📝 frontend/rust-lib/event-integration/src/user_event.rs (+24 -2)
📝 frontend/rust-lib/event-integration/tests/user/af_cloud_test/workspace_test.rs (+34 -12)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs (+31 -8)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/user.rs (+22 -7)
📝 frontend/rust-lib/flowy-server/src/supabase/api/user.rs (+21 -7)
📝 frontend/rust-lib/flowy-user-pub/src/cloud.rs (+14 -7)
📝 frontend/rust-lib/flowy-user-pub/src/entities.rs (+2 -0)
📝 frontend/rust-lib/flowy-user-pub/src/session.rs (+1 -0)
📝 frontend/rust-lib/flowy-user/src/entities/user_profile.rs (+8 -0)
📝 frontend/rust-lib/flowy-user/src/entities/workspace.rs (+22 -0)

...and 5 more files

📄 Description

  • Add icon and created_at_timestamp field for UserWorkspacePB
  • Add change name functionality for workspace
  • Add change icon functionality for workspace

🔄 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/4752 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 2/27/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `workspace-api` --- ### 📝 Commits (8) - [`2d05bb5`](https://github.com/AppFlowy-IO/AppFlowy/commit/2d05bb54f18217c4ca9715e776269c74c558a4d5) feat: add rename-workspace - [`43f78d6`](https://github.com/AppFlowy-IO/AppFlowy/commit/43f78d68275b7defb4a653a13c8715c0b4b0da2d) chore: handle error for uuid parsing - [`4bd4efa`](https://github.com/AppFlowy-IO/AppFlowy/commit/4bd4efa6f4b9a9d4135f135ef62ab0dbeaaf0532) chore: merge with main - [`34bf837`](https://github.com/AppFlowy-IO/AppFlowy/commit/34bf83774fb4ad1b9faf229a75cee6972d105c99) feat: add test for rename workspace - [`ee42dbb`](https://github.com/AppFlowy-IO/AppFlowy/commit/ee42dbb477eb042949353e2492ee63c42cce6eb4) feat: added change icon for workspace - [`c9b136f`](https://github.com/AppFlowy-IO/AppFlowy/commit/c9b136feebf348bd4002f8730bd7e4180af5c108) feat: added icon and created_at field - [`d3757fc`](https://github.com/AppFlowy-IO/AppFlowy/commit/d3757fc84529a135175a6c7a533c43983feb256d) fix: wasm build - [`2159fca`](https://github.com/AppFlowy-IO/AppFlowy/commit/2159fca76e8e99cdc41dabb9f1d4a61daee08985) Merge branch 'main' into workspace-api ### 📊 Changes **25 files changed** (+296 additions, -100 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+12 -12) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web/wasm-libs/Cargo.lock` (+26 -12) 📝 `frontend/appflowy_web/wasm-libs/Cargo.toml` (+1 -1) 📝 `frontend/appflowy_web/wasm-libs/af-user/src/event_handler.rs` (+2 -2) 📝 `frontend/appflowy_web/wasm-libs/af-user/src/manager.rs` (+3 -3) 📝 `frontend/appflowy_web/wasm-libs/af-user/src/protobuf/mod.rs` (+3 -3) 📝 `frontend/appflowy_web/wasm-libs/af-wasm/src/integrate/server.rs` (+1 -1) 📝 `frontend/rust-lib/Cargo.lock` (+11 -11) 📝 `frontend/rust-lib/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/event-integration/src/user_event.rs` (+24 -2) 📝 `frontend/rust-lib/event-integration/tests/user/af_cloud_test/workspace_test.rs` (+34 -12) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs` (+31 -8) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/user.rs` (+22 -7) 📝 `frontend/rust-lib/flowy-server/src/supabase/api/user.rs` (+21 -7) 📝 `frontend/rust-lib/flowy-user-pub/src/cloud.rs` (+14 -7) 📝 `frontend/rust-lib/flowy-user-pub/src/entities.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-user-pub/src/session.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user/src/entities/user_profile.rs` (+8 -0) 📝 `frontend/rust-lib/flowy-user/src/entities/workspace.rs` (+22 -0) _...and 5 more files_ </details> ### 📄 Description - Add `icon` and `created_at_timestamp` field for `UserWorkspacePB` - Add change name functionality for workspace - Add change icon functionality for workspace --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:23:10 +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#6427
No description provided.