cargo fmt
This commit is contained in:
parent
1de25aaca9
commit
1253539efa
1 changed files with 14 additions and 4 deletions
18
src/main.rs
18
src/main.rs
|
@ -53,7 +53,9 @@ impl CommentCreationError {
|
|||
fn to_http_response(&self) -> HttpResponse {
|
||||
match self {
|
||||
Self::DatabaseAccessError(error) => error.to_http_response(),
|
||||
Self::BadParent => HttpResponse::BadRequest().reason("invalid comment parent").finish(),
|
||||
Self::BadParent => HttpResponse::BadRequest()
|
||||
.reason("invalid comment parent")
|
||||
.finish(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -255,16 +257,24 @@ async fn post_comment(
|
|||
}
|
||||
}
|
||||
}
|
||||
Err(_) => return Err(CommentCreationError::DatabaseAccessError(DatabaseAccessError::DatabaseError)),
|
||||
Err(_) => {
|
||||
return Err(CommentCreationError::DatabaseAccessError(
|
||||
DatabaseAccessError::DatabaseError,
|
||||
))
|
||||
}
|
||||
};
|
||||
return Err(CommentCreationError::BadParent);
|
||||
}
|
||||
}
|
||||
if let Err(_) = database.create_comment(&comment) {
|
||||
return Err(CommentCreationError::DatabaseAccessError(DatabaseAccessError::DatabaseError));
|
||||
return Err(CommentCreationError::DatabaseAccessError(
|
||||
DatabaseAccessError::DatabaseError,
|
||||
));
|
||||
}
|
||||
Ok(())
|
||||
}).await {
|
||||
})
|
||||
.await
|
||||
{
|
||||
Ok(result) => match result {
|
||||
Ok(_) => HttpResponse::Ok().into(),
|
||||
Err(error) => error.to_http_response(),
|
||||
|
|
Loading…
Add table
Reference in a new issue