[PR #3078] [MERGED] Migrate user data to cloud #5551

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3078
Author: @appflowy
Created: 7/28/2023
Status: Merged
Merged: 7/29/2023
Merged by: @appflowy

Base: mainHead: migrate_user_to_cloud


📝 Commits (10+)

  • b4942ab refactor: weak passed-in params in handler
  • 0a60e0c refactor: rename struct
  • efc94af chore: update tables
  • 712f972 chore: update schema
  • e2877f6 chore: add permission
  • 27cc693 chore: update tables
  • e57945f chore: support transaction mode
  • 7445c52 chore: workspace database id
  • 40abe71 chore: add user workspace
  • efdb210 feat: return list of workspaces

📊 Changes

179 files changed (+5000 additions, -5315 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/core/network_monitor.dart (+3 -3)
📝 frontend/appflowy_flutter/lib/env/env.dart (+1 -41)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+2 -10)
📝 frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart (+2 -3)
📝 frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/menu_user.dart (+14 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart (+13 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/setting_third_party_login.dart (+15 -5)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart (+21 -10)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart (+0 -3)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart (+2 -24)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.i.dart (+2 -23)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+80 -235)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+14 -12)
📝 frontend/appflowy_tauri/src/services/backend/index.ts (+0 -1)
frontend/flowy-server-config/Cargo.toml (+0 -8)
frontend/flowy-server-config/src/lib.rs (+0 -14)
📝 frontend/resources/translations/en.json (+2 -0)
📝 frontend/rust-lib/Cargo.lock (+157 -396)
📝 frontend/rust-lib/Cargo.toml (+16 -10)

...and 80 more files

📄 Description

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/3078 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/28/2023 **Status:** ✅ Merged **Merged:** 7/29/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `migrate_user_to_cloud` --- ### 📝 Commits (10+) - [`b4942ab`](https://github.com/AppFlowy-IO/AppFlowy/commit/b4942ab0a88363286dd76f2bc23b4415a0bcfaae) refactor: weak passed-in params in handler - [`0a60e0c`](https://github.com/AppFlowy-IO/AppFlowy/commit/0a60e0cfbc7bd565ec4cab1303c44511195665c3) refactor: rename struct - [`efc94af`](https://github.com/AppFlowy-IO/AppFlowy/commit/efc94afcdbbc566e52c914c569b7cff78f3362f5) chore: update tables - [`712f972`](https://github.com/AppFlowy-IO/AppFlowy/commit/712f9726193e89f37d7479529bef9efded7f140d) chore: update schema - [`e2877f6`](https://github.com/AppFlowy-IO/AppFlowy/commit/e2877f67b01b7a81d1a1e3cf0ed2b1f8b0927527) chore: add permission - [`27cc693`](https://github.com/AppFlowy-IO/AppFlowy/commit/27cc69306d2571f4a991b65efba3477b1c9dc26b) chore: update tables - [`e57945f`](https://github.com/AppFlowy-IO/AppFlowy/commit/e57945fdef39609fbc21be02291d7271465e881e) chore: support transaction mode - [`7445c52`](https://github.com/AppFlowy-IO/AppFlowy/commit/7445c5284cf706ea1565946275646f69417c054a) chore: workspace database id - [`40abe71`](https://github.com/AppFlowy-IO/AppFlowy/commit/40abe716bcc793c6f8f91842928036c59ef68f58) chore: add user workspace - [`efdb210`](https://github.com/AppFlowy-IO/AppFlowy/commit/efdb21066cc5850d4487f464c6a5dd5ecdc0ce75) feat: return list of workspaces ### 📊 Changes **179 files changed** (+5000 additions, -5315 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/core/network_monitor.dart` (+3 -3) 📝 `frontend/appflowy_flutter/lib/env/env.dart` (+1 -41) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+2 -10) 📝 `frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart` (+2 -3) 📝 `frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/menu_user.dart` (+14 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart` (+13 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/setting_third_party_login.dart` (+15 -5) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart` (+21 -10) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/dispatch/dispatch.dart` (+0 -3) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart` (+2 -24) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.i.dart` (+2 -23) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+80 -235) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+14 -12) 📝 `frontend/appflowy_tauri/src/services/backend/index.ts` (+0 -1) ➖ `frontend/flowy-server-config/Cargo.toml` (+0 -8) ➖ `frontend/flowy-server-config/src/lib.rs` (+0 -14) 📝 `frontend/resources/translations/en.json` (+2 -0) 📝 `frontend/rust-lib/Cargo.lock` (+157 -396) 📝 `frontend/rust-lib/Cargo.toml` (+16 -10) _...and 80 more files_ </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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:19:15 +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#5551
No description provided.