[PR #4824] [MERGED] feat: add icon field #6470

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/4824
Author: @speed2exe
Created: 3/5/2024
Status: Merged
Merged: 3/13/2024
Merged by: @appflowy

Base: mainHead: workspace-icon


📝 Commits (10+)

  • 0a3e597 feat: add icon field
  • b0c6ca6 Merge branch 'main' into workspace-icon
  • c615b2e fix: add sqlx migration files
  • bdb8437 Merge branch 'main' into workspace-icon
  • 5875183 chore: fix tst
  • 143bdbb Merge branch 'main' into workspace-icon
  • 5ccdf9c chore: fix duplicate event name
  • ba96a78 Merge branch 'main' into workspace-icon
  • 5203c36 chore: update to lastest stable rust toolchain
  • 6d9981b chore: use 1.75 channel

📊 Changes

19 files changed (+42 additions, -25 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/user/application/user_service.dart (+1 -1)
📝 frontend/rust-lib/event-integration/src/event_builder.rs (+4 -12)
📝 frontend/rust-lib/event-integration/src/folder_event.rs (+1 -1)
📝 frontend/rust-lib/event-integration/tests/folder/local_test/script.rs (+1 -1)
📝 frontend/rust-lib/event-integration/tests/folder/local_test/test.rs (+2 -2)
📝 frontend/rust-lib/event-integration/tests/user/af_cloud_test/workspace_test.rs (+4 -1)
📝 frontend/rust-lib/flowy-folder/src/event_map.rs (+2 -2)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs (+1 -0)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/user.rs (+1 -0)
frontend/rust-lib/flowy-sqlite/migrations/.gitkeep (+0 -0)
frontend/rust-lib/flowy-sqlite/migrations/2024-03-09-031208_user_workspace_icon/down.sql (+2 -0)
frontend/rust-lib/flowy-sqlite/migrations/2024-03-09-031208_user_workspace_icon/up.sql (+2 -0)
📝 frontend/rust-lib/flowy-sqlite/src/schema.rs (+1 -0)
📝 frontend/rust-lib/flowy-user-pub/src/entities.rs (+3 -0)
📝 frontend/rust-lib/flowy-user-pub/src/session.rs (+1 -0)
📝 frontend/rust-lib/flowy-user/src/entities/user_profile.rs (+4 -0)
📝 frontend/rust-lib/flowy-user/src/services/sqlite_sql/workspace_sql.rs (+3 -0)
📝 frontend/rust-lib/lib-dispatch/src/dispatcher.rs (+2 -2)
📝 frontend/rust-lib/lib-dispatch/src/module/module.rs (+7 -3)

📄 Description

  • Adding icon 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/4824 **Author:** [@speed2exe](https://github.com/speed2exe) **Created:** 3/5/2024 **Status:** ✅ Merged **Merged:** 3/13/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `workspace-icon` --- ### 📝 Commits (10+) - [`0a3e597`](https://github.com/AppFlowy-IO/AppFlowy/commit/0a3e5977fdf4447e200b93b440438a1d08ba6d72) feat: add icon field - [`b0c6ca6`](https://github.com/AppFlowy-IO/AppFlowy/commit/b0c6ca6730d5eaca17337b724f2f433817133780) Merge branch 'main' into workspace-icon - [`c615b2e`](https://github.com/AppFlowy-IO/AppFlowy/commit/c615b2e7d92da9d09add6f290ce978719c0e3302) fix: add sqlx migration files - [`bdb8437`](https://github.com/AppFlowy-IO/AppFlowy/commit/bdb8437b746cfd10aeb683cee82384f829328ce6) Merge branch 'main' into workspace-icon - [`5875183`](https://github.com/AppFlowy-IO/AppFlowy/commit/587518381fef942808b62010211ca6351b8508ee) chore: fix tst - [`143bdbb`](https://github.com/AppFlowy-IO/AppFlowy/commit/143bdbbb8dd926122a1bdc6724451acede89cd87) Merge branch 'main' into workspace-icon - [`5ccdf9c`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ccdf9c34565398829458d0bcbcc95a02dc7d947) chore: fix duplicate event name - [`ba96a78`](https://github.com/AppFlowy-IO/AppFlowy/commit/ba96a7823e82c9fd70921a4e381581a743ddfc1f) Merge branch 'main' into workspace-icon - [`5203c36`](https://github.com/AppFlowy-IO/AppFlowy/commit/5203c3637369b3d9ec2203a6cd0011c4e51bb209) chore: update to lastest stable rust toolchain - [`6d9981b`](https://github.com/AppFlowy-IO/AppFlowy/commit/6d9981b530aff42dcc9016c008a42346561cb0a4) chore: use 1.75 channel ### 📊 Changes **19 files changed** (+42 additions, -25 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/user/application/user_service.dart` (+1 -1) 📝 `frontend/rust-lib/event-integration/src/event_builder.rs` (+4 -12) 📝 `frontend/rust-lib/event-integration/src/folder_event.rs` (+1 -1) 📝 `frontend/rust-lib/event-integration/tests/folder/local_test/script.rs` (+1 -1) 📝 `frontend/rust-lib/event-integration/tests/folder/local_test/test.rs` (+2 -2) 📝 `frontend/rust-lib/event-integration/tests/user/af_cloud_test/workspace_test.rs` (+4 -1) 📝 `frontend/rust-lib/flowy-folder/src/event_map.rs` (+2 -2) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/cloud_service_impl.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/user.rs` (+1 -0) ➖ `frontend/rust-lib/flowy-sqlite/migrations/.gitkeep` (+0 -0) ➕ `frontend/rust-lib/flowy-sqlite/migrations/2024-03-09-031208_user_workspace_icon/down.sql` (+2 -0) ➕ `frontend/rust-lib/flowy-sqlite/migrations/2024-03-09-031208_user_workspace_icon/up.sql` (+2 -0) 📝 `frontend/rust-lib/flowy-sqlite/src/schema.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user-pub/src/entities.rs` (+3 -0) 📝 `frontend/rust-lib/flowy-user-pub/src/session.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user/src/entities/user_profile.rs` (+4 -0) 📝 `frontend/rust-lib/flowy-user/src/services/sqlite_sql/workspace_sql.rs` (+3 -0) 📝 `frontend/rust-lib/lib-dispatch/src/dispatcher.rs` (+2 -2) 📝 `frontend/rust-lib/lib-dispatch/src/module/module.rs` (+7 -3) </details> ### 📄 Description - Adding icon 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: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#6470
No description provided.