codecombat/server/articles/Article.coffee
2014-04-08 19:26:19 -07:00

11 lines
411 B
CoffeeScript

mongoose = require('mongoose')
plugins = require('../plugins/plugins')
ArticleSchema = new mongoose.Schema(body: String, {strict:false})
ArticleSchema.plugin(plugins.NamedPlugin)
ArticleSchema.plugin(plugins.VersionedPlugin)
ArticleSchema.plugin(plugins.SearchablePlugin, {searchable: ['body', 'name']})
ArticleSchema.plugin(plugins.PatchablePlugin)
module.exports = mongoose.model('article', ArticleSchema)