🔧 Implemented the long-awaited refactor of the unzip and unrar methods for cover and metadata extraction
This commit is contained in:
@@ -57,7 +57,11 @@ const ComicSchema = mongoose.Schema(
|
||||
shortboxed: {},
|
||||
gcd: {},
|
||||
},
|
||||
rawFileDetails: { type: RawFileDetailsSchema, es_indexed: true, default: {} },
|
||||
rawFileDetails: {
|
||||
type: RawFileDetailsSchema,
|
||||
es_indexed: true,
|
||||
default: {},
|
||||
},
|
||||
inferredMetadata: {
|
||||
issue: {
|
||||
name: { type: String, es_indexed: true },
|
||||
|
||||
6
models/comicinfoXML.model.ts
Normal file
6
models/comicinfoXML.model.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
const mongoose = require("mongoose");
|
||||
|
||||
const ComicInfoXMLSchema = mongoose.Schema({
|
||||
|
||||
});
|
||||
export default ComicInfoXMLSchema;
|
||||
Reference in New Issue
Block a user