mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
22 lines
591 B
CoffeeScript
22 lines
591 B
CoffeeScript
mongoose = require('mongoose')
|
|
plugins = require('./plugins')
|
|
|
|
NestedLevelSchema = new mongoose.Schema(
|
|
name: String
|
|
description: String
|
|
thumbnail: Buffer
|
|
original: {type: mongoose.Schema.ObjectId, ref: 'level'}
|
|
majorVersion: Number
|
|
)
|
|
|
|
CampaignSchema = new mongoose.Schema(
|
|
description: String
|
|
levels: [NestedLevelSchema]
|
|
)
|
|
|
|
CampaignSchema.plugin(plugins.NamedPlugin)
|
|
CampaignSchema.plugin(plugins.PermissionsPlugin)
|
|
CampaignSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
|
|
|
|
module.exports = Campaign = mongoose.model('campaign', CampaignSchema)
|
|
|