mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 15:15:36 +01:00
Fix
This commit is contained in:
@@ -81,8 +81,8 @@ pub struct Book {
|
||||
pub available_types: Vec<String>,
|
||||
#[serde(serialize_with = "naive_date_serializer::serialize")]
|
||||
pub uploaded: NaiveDate,
|
||||
pub authors: sqlx::types::Json<Vec<Author>>,
|
||||
pub translators: sqlx::types::Json<Vec<Author>>,
|
||||
pub sequences: sqlx::types::Json<Vec<Sequence>>,
|
||||
pub authors: Vec<Author>,
|
||||
pub translators: Vec<Author>,
|
||||
pub sequences: Vec<Sequence>,
|
||||
pub annotation_exists: bool,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user