Skip to content

Commit

Permalink
Merge pull request #36 from cedricWebsenso/main
Browse files Browse the repository at this point in the history
Fixing product model, author images field missing
  • Loading branch information
cedricWebsenso authored Mar 21, 2024
2 parents 50a290b + 0033d57 commit fcf6576
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion modules/products/server/models/product.schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,31 @@ const _defaultSchema = {
},
dateLimiteDePublication: {
type: Date
}
},
author: {
type: String,
trim: true
},
authorEn: {
type: String,
trim: true
},
authorEs: {
type: String,
trim: true
},
authorIt: {
type: String,
trim: true
},
authorDe: {
type: String,
trim: true
},
authorNl: {
type: String,
trim: true
},
}
],
video: [
Expand Down

0 comments on commit fcf6576

Please sign in to comment.