New data model fix scan for creating series/authors and mapping ebooks

This commit is contained in:
advplyr 2022-03-13 13:47:36 -05:00
parent ea9ec13845
commit 6597fca576
7 changed files with 134 additions and 50 deletions

View file

@ -341,5 +341,11 @@ class Book {
}
return payload
}
addEbookFile(libraryFile) {
var newEbook = new EBookFile()
newEbook.setData(libraryFile)
this.ebookFiles.push(newEbook)
}
}
module.exports = Book