Remove `unimplemented` in `<Comment as Crud>::create` (#4796)

* Remove `unimplemented` in `<Comment as Crud>::create`

* Update comment.rs
remove-federate-higher-id-error-revert
dullbananas 2024-06-14 01:40:57 -07:00 committed by GitHub
parent fc6f46c1ac
commit 99160228ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -118,8 +118,9 @@ impl Crud for Comment {
type IdType = CommentId;
/// This is unimplemented, use [[Comment::create]]
async fn create(_pool: &mut DbPool<'_>, _comment_form: &Self::InsertForm) -> Result<Self, Error> {
unimplemented!();
async fn create(pool: &mut DbPool<'_>, comment_form: &Self::InsertForm) -> Result<Self, Error> {
debug_assert!(false);
Comment::create(pool, comment_form, None).await
}
async fn update(