mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
22 lines
765 B
CoffeeScript
22 lines
765 B
CoffeeScript
|
mongoose = require('mongoose')
|
||
|
plugins = require('./plugins')
|
||
|
jsonschema = require('../schemas/level_component')
|
||
|
|
||
|
LevelComponentSchema = new mongoose.Schema {
|
||
|
description: String
|
||
|
system: String
|
||
|
}, {strict: false}
|
||
|
|
||
|
LevelComponentSchema.plugin(plugins.NamedPlugin)
|
||
|
LevelComponentSchema.plugin(plugins.PermissionsPlugin)
|
||
|
LevelComponentSchema.plugin(plugins.VersionedPlugin)
|
||
|
LevelComponentSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description', 'system']})
|
||
|
|
||
|
LevelComponentSchema.pre 'init', (next) ->
|
||
|
return next() unless jsonschema.properties?
|
||
|
for prop, sch of jsonschema.properties
|
||
|
@set(prop, _.cloneDeep sch.default) if sch.default?
|
||
|
next()
|
||
|
|
||
|
module.exports = LevelComponent = mongoose.model('level.component', LevelComponentSchema)
|