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/levels/systems/LevelSystem.coffee

22 lines
768 B
CoffeeScript
Raw Normal View History

2014-01-03 10:32:13 -08:00
mongoose = require('mongoose')
plugins = require('../../plugins/plugins')
jsonschema = require('./level_system_schema')
2014-01-03 10:32:13 -08:00
LevelSystemSchema = new mongoose.Schema {
description: String
}, {strict: false}
LevelSystemSchema.plugin(plugins.NamedPlugin)
LevelSystemSchema.plugin(plugins.PermissionsPlugin)
LevelSystemSchema.plugin(plugins.VersionedPlugin)
LevelSystemSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
LevelSystemSchema.plugin(plugins.PatchablePlugin)
2014-01-03 10:32:13 -08:00
LevelSystemSchema.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 = LevelSystem = mongoose.model('level.system', LevelSystemSchema)