This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
codecombat/server/articles/Article.coffee

12 lines
411 B
CoffeeScript
Raw Normal View History

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