[PR #3754] [MERGED] feat: save user metadata #5861

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3754
Author: @appflowy
Created: 10/23/2023
Status: Merged
Merged: 10/24/2023
Merged by: @appflowy

Base: mainHead: af_cloud_workspace


📝 Commits (7)

📊 Changes

62 files changed (+1525 additions, -1476 deletions)

View changed files

.run/ProtoBuf_Gen.run.xml (+0 -23)
.run/Run backend.run.xml (+0 -18)
.run/dart-event.run.xml (+0 -16)
📝 frontend/appflowy_flutter/lib/startup/plugin/src/sandbox.dart (+1 -4)
📝 frontend/appflowy_flutter/lib/startup/tasks/appflowy_cloud_task.dart (+2 -0)
📝 frontend/appflowy_flutter/lib/user/application/user_auth_listener.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/splash_screen.dart (+1 -11)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+8 -7)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+1 -1)
📝 frontend/rust-lib/Cargo.lock (+24 -9)
📝 frontend/rust-lib/Cargo.toml (+1 -1)
📝 frontend/rust-lib/event-integration/src/document/document_event.rs (+8 -6)
📝 frontend/rust-lib/event-integration/src/event_builder.rs (+4 -4)
frontend/rust-lib/event-integration/src/folder_event.rs (+0 -115)
📝 frontend/rust-lib/event-integration/src/lib.rs (+13 -887)
frontend/rust-lib/event-integration/src/test_database.rs (+447 -0)
frontend/rust-lib/event-integration/src/test_document.rs (+119 -0)
frontend/rust-lib/event-integration/src/test_folder.rs (+173 -0)
frontend/rust-lib/event-integration/src/test_user.rs (+296 -0)
frontend/rust-lib/event-integration/src/user_event.rs (+0 -84)

...and 42 more files

📄 Description

PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 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/3754 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/23/2023 **Status:** ✅ Merged **Merged:** 10/24/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `af_cloud_workspace` --- ### 📝 Commits (7) - [`54fb79c`](https://github.com/AppFlowy-IO/AppFlowy/commit/54fb79c230ccdaf3e7b7226cebda7498fed7f865) feat: save user metadata - [`75f64d3`](https://github.com/AppFlowy-IO/AppFlowy/commit/75f64d39eb678a803c456aeb3aff3ed6d384a4ca) chore: update client api - [`724790a`](https://github.com/AppFlowy-IO/AppFlowy/commit/724790ae05a8f6b50a12072b19ae01638f49cb10) refactor: separate test methods - [`29e16d0`](https://github.com/AppFlowy-IO/AppFlowy/commit/29e16d0e21e677bdf6ef83e670c3d34564d7a9fc) chore: save updated at - [`6ad5b85`](https://github.com/AppFlowy-IO/AppFlowy/commit/6ad5b85b993ef45d6f856d62f3437a2105a55531) chore: clippy - [`2f0e0a9`](https://github.com/AppFlowy-IO/AppFlowy/commit/2f0e0a917df71bab8089f8d945b399056ec3b66b) Merge branch 'main' into af_cloud_workspace - [`a019aac`](https://github.com/AppFlowy-IO/AppFlowy/commit/a019aac4fb0afbd40f2f211d7127cef1668ced44) chore: fix test ### 📊 Changes **62 files changed** (+1525 additions, -1476 deletions) <details> <summary>View changed files</summary> ➖ `.run/ProtoBuf_Gen.run.xml` (+0 -23) ➖ `.run/Run backend.run.xml` (+0 -18) ➖ `.run/dart-event.run.xml` (+0 -16) 📝 `frontend/appflowy_flutter/lib/startup/plugin/src/sandbox.dart` (+1 -4) 📝 `frontend/appflowy_flutter/lib/startup/tasks/appflowy_cloud_task.dart` (+2 -0) 📝 `frontend/appflowy_flutter/lib/user/application/user_auth_listener.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/splash_screen.dart` (+1 -11) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+8 -7) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/Cargo.lock` (+24 -9) 📝 `frontend/rust-lib/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/event-integration/src/document/document_event.rs` (+8 -6) 📝 `frontend/rust-lib/event-integration/src/event_builder.rs` (+4 -4) ➖ `frontend/rust-lib/event-integration/src/folder_event.rs` (+0 -115) 📝 `frontend/rust-lib/event-integration/src/lib.rs` (+13 -887) ➕ `frontend/rust-lib/event-integration/src/test_database.rs` (+447 -0) ➕ `frontend/rust-lib/event-integration/src/test_document.rs` (+119 -0) ➕ `frontend/rust-lib/event-integration/src/test_folder.rs` (+173 -0) ➕ `frontend/rust-lib/event-integration/src/test_user.rs` (+296 -0) ➖ `frontend/rust-lib/event-integration/src/user_event.rs` (+0 -84) _...and 42 more files_ </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:20:38 +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#5861
No description provided.