mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-10 18:30:22 +01:00
Add position to sequence books
This commit is contained in:
@@ -33,6 +33,7 @@ pub struct SequenceBook {
|
||||
pub authors: Vec<Author>,
|
||||
pub translators: Vec<Author>,
|
||||
pub annotation_exists: bool,
|
||||
pub position: i32,
|
||||
}
|
||||
|
||||
impl From<book::Data> for SequenceBook {
|
||||
@@ -48,6 +49,7 @@ impl From<book::Data> for SequenceBook {
|
||||
translations,
|
||||
book_annotation,
|
||||
source,
|
||||
book_sequences,
|
||||
..
|
||||
} = value;
|
||||
|
||||
@@ -62,6 +64,7 @@ impl From<book::Data> for SequenceBook {
|
||||
authors: get_authors(book_authors),
|
||||
translators: get_translators(translations),
|
||||
annotation_exists: book_annotation.unwrap().is_some(),
|
||||
position: book_sequences.unwrap().first().unwrap().position,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user