Bootcamp to user Relationship — we need to make out system like this that publisher can only post 1 bootcamp, admin can post any amount of Bootcamp, for that we need to include user in our bootcamp model in models/Bootcamps.js just add this one feild user: {
type: mongoose.Schema.ObjectId,
ref: 'User',
required: true
} in…