codecombat/server/articles/Article.coffee

13 lines
354 B
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
mongoose = require('mongoose')
plugins = require('../plugins/plugins')
2014-01-03 13:32:13 -05:00
ArticleSchema = new mongoose.Schema(
body: String,
)
ArticleSchema.plugin(plugins.NamedPlugin)
ArticleSchema.plugin(plugins.VersionedPlugin)
ArticleSchema.plugin(plugins.SearchablePlugin, {searchable: ['body', 'name']})
module.exports = mongoose.model('article', ArticleSchema)