[PR #4827] [MERGED] Workspace invite #6472

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4827
Author: @speed2exe
Created: 3/6/2024
Status: Merged
Merged: 4/11/2024
Merged by: @LucasXu0

Base: mainHead: workspace-invite


📝 Commits (10+)

  • 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
  • a2ae0e6 Merge branch 'main' into workspace-rename-no-icon
  • e7013dd fix: allow new_icon to be empty string
  • 76fcba5 Merge branch 'main' into workspace-rename-no-icon
  • d0c6472 Merge branch 'main' into workspace-invite
  • 162a875 feat: add invitation api cloud services

📊 Changes

13 files changed (+379 additions, -34 deletions)

View changed files

📝 .github/workflows/rust_ci.yaml (+3 -0)
📝 frontend/rust-lib/Cargo.lock (+2 -16)
📝 frontend/rust-lib/event-integration/src/folder_event.rs (+59 -7)
📝 frontend/rust-lib/event-integration/tests/user/af_cloud_test/member_test.rs (+29 -0)
📝 frontend/rust-lib/flowy-database2/src/services/calculations/service.rs (+1 -1)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs (+70 -3)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/dto.rs (+24 -3)
📝 frontend/rust-lib/flowy-user-pub/src/cloud.rs (+22 -1)
📝 frontend/rust-lib/flowy-user-pub/src/entities.rs (+18 -0)
📝 frontend/rust-lib/flowy-user/src/entities/workspace.rs (+61 -1)
📝 frontend/rust-lib/flowy-user/src/event_handler.rs (+38 -0)
📝 frontend/rust-lib/flowy-user/src/event_map.rs (+15 -1)
📝 frontend/rust-lib/flowy-user/src/user_manager/manager_user_workspace.rs (+37 -1)

📄 Description

provide 3 workspace api from cloud

  • Send workspace invitation to target user
  • Show invitation for user
  • Accept workspace invitation

🔄 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/4827 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 3/6/2024 **Status:** ✅ Merged **Merged:** 4/11/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `workspace-invite` --- ### 📝 Commits (10+) - [`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 - [`a2ae0e6`](https://github.com/AppFlowy-IO/AppFlowy/commit/a2ae0e65cd67277be9ecffb65aee684a7c474b3d) Merge branch 'main' into workspace-rename-no-icon - [`e7013dd`](https://github.com/AppFlowy-IO/AppFlowy/commit/e7013dd0f1a66c95f5b7fa081fd118004b6886a2) fix: allow new_icon to be empty string - [`76fcba5`](https://github.com/AppFlowy-IO/AppFlowy/commit/76fcba59668a55f4aad6d26ed0fda7736caff667) Merge branch 'main' into workspace-rename-no-icon - [`d0c6472`](https://github.com/AppFlowy-IO/AppFlowy/commit/d0c647203cac43529aab634d5b28e5956aa6fb7f) Merge branch 'main' into workspace-invite - [`162a875`](https://github.com/AppFlowy-IO/AppFlowy/commit/162a875f46a6b15beaa4cf5de2539b603626bb4b) feat: add invitation api cloud services ### 📊 Changes **13 files changed** (+379 additions, -34 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_ci.yaml` (+3 -0) 📝 `frontend/rust-lib/Cargo.lock` (+2 -16) 📝 `frontend/rust-lib/event-integration/src/folder_event.rs` (+59 -7) 📝 `frontend/rust-lib/event-integration/tests/user/af_cloud_test/member_test.rs` (+29 -0) 📝 `frontend/rust-lib/flowy-database2/src/services/calculations/service.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs` (+70 -3) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/dto.rs` (+24 -3) 📝 `frontend/rust-lib/flowy-user-pub/src/cloud.rs` (+22 -1) 📝 `frontend/rust-lib/flowy-user-pub/src/entities.rs` (+18 -0) 📝 `frontend/rust-lib/flowy-user/src/entities/workspace.rs` (+61 -1) 📝 `frontend/rust-lib/flowy-user/src/event_handler.rs` (+38 -0) 📝 `frontend/rust-lib/flowy-user/src/event_map.rs` (+15 -1) 📝 `frontend/rust-lib/flowy-user/src/user_manager/manager_user_workspace.rs` (+37 -1) </details> ### 📄 Description provide 3 workspace api from cloud - Send workspace invitation to target user - Show invitation for user - Accept workspace invitation --- <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:22 +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#6472
No description provided.