Skip to content

Commit

Permalink
feat: add impl for cell
Browse files Browse the repository at this point in the history
  • Loading branch information
speed2exe committed Nov 30, 2024
1 parent 739fef0 commit fc0698d
Show file tree
Hide file tree
Showing 8 changed files with 539 additions and 391 deletions.
2 changes: 1 addition & 1 deletion services/appflowy-collaborate/src/group/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ where
)
.await?,
);
self.state.insert_group(object_id, group.clone()).await;
self.state.insert_group(object_id, group).await;
Ok(())
}
}
Expand Down
1 change: 1 addition & 0 deletions src/api/workspace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1927,6 +1927,7 @@ async fn post_database_row_handler(

biz::collab::ops::insert_database_row(
&state.collab_access_control_storage,
&state.pg_pool,
&workspace_id,
&db_id,
uid,
Expand Down
1 change: 1 addition & 0 deletions src/biz/collab/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pub mod folder_view;
pub mod ops;
pub mod publish_outline;
pub mod utils;
Loading

0 comments on commit fc0698d

Please sign in to comment.