[PR #6483] [MERGED] fix: import data #7414

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/6483
Author: @appflowy
Created: 10/5/2024
Status: Merged
Merged: 10/6/2024
Merged by: @appflowy

Base: mainHead: fix_import_data


📝 Commits (10+)

📊 Changes

52 files changed (+1165 additions, -783 deletions)

View changed files

📝 .github/workflows/flutter_ci.yaml (+17 -14)
📝 .github/workflows/rust_ci.yaml (+5 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart (+3 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/data_migration/anon_user_data_migration_test.dart (+11 -11)
frontend/appflowy_flutter/integration_test/desktop/cloud/data_migration/data_migration_test_runner.dart (+5 -0)
📝 frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/uncategorized_test_runner.dart (+0 -2)
📝 frontend/appflowy_flutter/integration_test/shared/auth_operation.dart (+2 -1)
📝 frontend/appflowy_flutter/integration_test/shared/base.dart (+1 -1)
📝 frontend/appflowy_flutter/integration_test/shared/common_operations.dart (+14 -0)
📝 frontend/appflowy_flutter/lib/workspace/application/settings/setting_file_importer_bloc.dart (+12 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_menu.dart (+4 -3)
📝 frontend/appflowy_flutter/pubspec.lock (+6 -6)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+16 -16)
📝 frontend/appflowy_web_app/src-tauri/Cargo.lock (+9 -8)
📝 frontend/appflowy_web_app/src-tauri/Cargo.toml (+8 -8)
📝 frontend/rust-lib/Cargo.lock (+9 -8)
📝 frontend/rust-lib/Cargo.toml (+8 -8)
📝 frontend/rust-lib/event-integration-test/src/lib.rs (+1 -1)
📝 frontend/rust-lib/event-integration-test/src/user_event.rs (+3 -2)
📝 frontend/rust-lib/event-integration-test/tests/chat/ai_tool_test.rs (+2 -2)

...and 32 more files

📄 Description

  1. Fix the issue with importing the AppFlowy data folder. After importing the data folder, ensure that all imported views are placed in the current workspace.
  2. Fix the migration process for anonymous users. All documents and databases from anonymous users should be moved to a newly created workspace.
  3. fix import appflowy data folder which contains spaces

🔄 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/6483 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 10/5/2024 **Status:** ✅ Merged **Merged:** 10/6/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `fix_import_data` --- ### 📝 Commits (10+) - [`14f4bc1`](https://github.com/AppFlowy-IO/AppFlowy/commit/14f4bc1c3688bf11c48aae9428a7b9b81faf8efc) chore: import into space - [`9b69109`](https://github.com/AppFlowy-IO/AppFlowy/commit/9b69109c46b4067f7ee86183e53f9278cf3f51d3) chore: par insert - [`ae76871`](https://github.com/AppFlowy-IO/AppFlowy/commit/ae76871b5cc32e1e1bace7d63e2e76c7593d91d7) fix: migrate from anon - [`e7d6538`](https://github.com/AppFlowy-IO/AppFlowy/commit/e7d6538c712544bc16e56dbf42a030fe029da185) chore: fix test - [`c27afa5`](https://github.com/AppFlowy-IO/AppFlowy/commit/c27afa5949f3330e4e9a495e8b5246f5b12b2e1c) chore: update test - [`99de52e`](https://github.com/AppFlowy-IO/AppFlowy/commit/99de52e3c4390a91a6bf2c651d34c8115c8b5d22) chore: add test - [`0e5aaa5`](https://github.com/AppFlowy-IO/AppFlowy/commit/0e5aaa54f5e3f51dbf249a305d5902873b293d33) chore: update test - [`9f1aff0`](https://github.com/AppFlowy-IO/AppFlowy/commit/9f1aff00bda5c03c3d53212b6d78cd6099209e44) chore: update test - [`dcb8f44`](https://github.com/AppFlowy-IO/AppFlowy/commit/dcb8f44b88234dfcc2fdd46964c9a19dd6a874c9) chore: update docs - [`a3c003a`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3c003aa043b163535f0d4fc114ba77bc5c1e295) fix: space collab ### 📊 Changes **52 files changed** (+1165 additions, -783 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/flutter_ci.yaml` (+17 -14) 📝 `.github/workflows/rust_ci.yaml` (+5 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/cloud_runner.dart` (+3 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/data_migration/anon_user_data_migration_test.dart` (+11 -11) ➕ `frontend/appflowy_flutter/integration_test/desktop/cloud/data_migration/data_migration_test_runner.dart` (+5 -0) 📝 `frontend/appflowy_flutter/integration_test/desktop/cloud/uncategorized/uncategorized_test_runner.dart` (+0 -2) 📝 `frontend/appflowy_flutter/integration_test/shared/auth_operation.dart` (+2 -1) 📝 `frontend/appflowy_flutter/integration_test/shared/base.dart` (+1 -1) 📝 `frontend/appflowy_flutter/integration_test/shared/common_operations.dart` (+14 -0) 📝 `frontend/appflowy_flutter/lib/workspace/application/settings/setting_file_importer_bloc.dart` (+12 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/sidebar_space_menu.dart` (+4 -3) 📝 `frontend/appflowy_flutter/pubspec.lock` (+6 -6) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+16 -16) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.lock` (+9 -8) 📝 `frontend/appflowy_web_app/src-tauri/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/Cargo.lock` (+9 -8) 📝 `frontend/rust-lib/Cargo.toml` (+8 -8) 📝 `frontend/rust-lib/event-integration-test/src/lib.rs` (+1 -1) 📝 `frontend/rust-lib/event-integration-test/src/user_event.rs` (+3 -2) 📝 `frontend/rust-lib/event-integration-test/tests/chat/ai_tool_test.rs` (+2 -2) _...and 32 more files_ </details> ### 📄 Description 1. Fix the issue with importing the AppFlowy data folder. After importing the data folder, ensure that all imported views are placed in the current workspace. 2. Fix the migration process for anonymous users. All documents and databases from anonymous users should be moved to a newly created workspace. 3. fix import appflowy data folder which contains spaces --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:19:30 +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#7414
No description provided.