mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-13 11:21:34 +00:00

* refactor: traits * feat: import data * chore: track database view * fix: import * refactor: collab doc state * refactor: get collab doc state * feat: batch create collab object * fix: test * ci: run docker compose if the server is not up * chore: bump collab * chore: update ci * chore: update ci * chore: update ci * chore: implement ui * chore: implement ui * chore: implement ui
14 lines
416 B
Rust
14 lines
416 B
Rust
use crate::folder_builder::ParentChildViews;
|
|
use std::collections::HashMap;
|
|
|
|
pub enum ImportData {
|
|
AppFlowyDataFolder {
|
|
view: ParentChildViews,
|
|
/// Used to update the [DatabaseViewTrackerList] when importing the database.
|
|
database_view_ids_by_database_id: HashMap<String, Vec<String>>,
|
|
row_object_ids: Vec<String>,
|
|
document_object_ids: Vec<String>,
|
|
database_object_ids: Vec<String>,
|
|
},
|
|
}
|