diff --git a/src/shows/dto/show.dto.ts b/src/shows/dto/show.dto.ts index 36bdb8f..ca9253f 100644 --- a/src/shows/dto/show.dto.ts +++ b/src/shows/dto/show.dto.ts @@ -6,4 +6,5 @@ export class ShowDto { episodes: number; description: string; genres: string[]; + images: string[]; } diff --git a/src/shows/schema/show.schema.ts b/src/shows/schema/show.schema.ts index 8e8e50c..33e1e68 100644 --- a/src/shows/schema/show.schema.ts +++ b/src/shows/schema/show.schema.ts @@ -7,4 +7,5 @@ export const ShowSchema = new Schema({ episodes: { type: Number, required: true }, description: { type: String, required: true }, genres: [{ type: String, required: true }], + images: [{ type: String, required: true }], });