Sam Pakvis

Results 1 issues of Sam Pakvis

Hi, ``` const CourseSchema = new Schema({ title: { type: String, required: true }, videos: [VideoSchema], }); CourseSchema.plugin(URLSlugs('title'); const Course = mongoose.model('course', CourseSchema); module.exports = Course; ``` This is pretty...