[PR #4761] [CLOSED] feat: add rename and change icon for workspace cloud api #6429

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

📋 Pull Request Information

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

Base: mainHead: workspace-rename-icon


📝 Commits (6)

  • 6f8834c feat: add rename and change icon for workspace cloud api
  • 5472eff feat: added created at field for UserWorkspacePB
  • 8915436 Merge branch 'main' into workspace-rename-icon
  • 06d5d57 Merge branch 'main' into workspace-rename-icon
  • 26ce7c1 test: added view check after creating workspace
  • bc9e506 feat: add user workspace table icon (#4766)

📊 Changes

21 files changed (+332 additions, -72 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/rust-lib/Cargo.lock (+27 -13)
📝 frontend/rust-lib/Cargo.toml (+1 -1)
📝 frontend/rust-lib/event-integration/src/user_event.rs (+56 -17)
📝 frontend/rust-lib/event-integration/tests/user/af_cloud_test/workspace_test.rs (+54 -12)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs (+29 -1)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/user.rs (+17 -2)
📝 frontend/rust-lib/flowy-server/src/supabase/api/user.rs (+14 -0)
📝 frontend/rust-lib/flowy-sqlite/src/schema.rs (+1 -0)
📝 frontend/rust-lib/flowy-user-pub/src/cloud.rs (+8 -0)
📝 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)
📝 frontend/rust-lib/flowy-user/src/event_handler.rs (+26 -0)
📝 frontend/rust-lib/flowy-user/src/event_map.rs (+8 -0)
📝 frontend/rust-lib/flowy-user/src/services/sqlite_sql/workspace_sql.rs (+3 -0)

...and 1 more files

📄 Description

  • added ability for desktop app to change icon and rename 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/4761 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 2/28/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `workspace-rename-icon` --- ### 📝 Commits (6) - [`6f8834c`](https://github.com/AppFlowy-IO/AppFlowy/commit/6f8834c776e3ac1f3dc64fc2c1fe1e30a72875b6) feat: add rename and change icon for workspace cloud api - [`5472eff`](https://github.com/AppFlowy-IO/AppFlowy/commit/5472eff9f7d3d5187022538f81e0d0c5f2245f14) feat: added created at field for UserWorkspacePB - [`8915436`](https://github.com/AppFlowy-IO/AppFlowy/commit/891543653d54fe395b71b09135fd62e8b4ed1b94) Merge branch 'main' into workspace-rename-icon - [`06d5d57`](https://github.com/AppFlowy-IO/AppFlowy/commit/06d5d57637bc5ea43f5f9d57a3ab4a1150ea647b) Merge branch 'main' into workspace-rename-icon - [`26ce7c1`](https://github.com/AppFlowy-IO/AppFlowy/commit/26ce7c179e94a8090c951b73859f78096765c910) test: added view check after creating workspace - [`bc9e506`](https://github.com/AppFlowy-IO/AppFlowy/commit/bc9e5061a41e009c8b27e5752b58814e207a726c) feat: add user workspace table icon (#4766) ### 📊 Changes **21 files changed** (+332 additions, -72 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/rust-lib/Cargo.lock` (+27 -13) 📝 `frontend/rust-lib/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/event-integration/src/user_event.rs` (+56 -17) 📝 `frontend/rust-lib/event-integration/tests/user/af_cloud_test/workspace_test.rs` (+54 -12) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs` (+29 -1) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/user.rs` (+17 -2) 📝 `frontend/rust-lib/flowy-server/src/supabase/api/user.rs` (+14 -0) 📝 `frontend/rust-lib/flowy-sqlite/src/schema.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user-pub/src/cloud.rs` (+8 -0) 📝 `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) 📝 `frontend/rust-lib/flowy-user/src/event_handler.rs` (+26 -0) 📝 `frontend/rust-lib/flowy-user/src/event_map.rs` (+8 -0) 📝 `frontend/rust-lib/flowy-user/src/services/sqlite_sql/workspace_sql.rs` (+3 -0) _...and 1 more files_ </details> ### 📄 Description - added ability for desktop app to change icon and rename 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:11 +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#6429
No description provided.