feat(events): add tag-based event recommendations API

This commit is contained in:
Jennie Robinson Faber 2026-04-09 22:32:11 +01:00
parent 3797ff7925
commit fcbad24f3e
3 changed files with 233 additions and 0 deletions

View file

@ -182,6 +182,7 @@ const eventSchema = new mongoose.Schema({
refundAmount: Number,
},
],
tags: [String],
createdBy: { type: String, required: true },
createdAt: { type: Date, default: Date.now },
updatedAt: { type: Date, default: Date.now },