mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
fce9f0031b
intermediate intermediate
25 lines
821 B
CoffeeScript
25 lines
821 B
CoffeeScript
mongoose = require 'mongoose'
|
|
plugins = require '../plugins/plugins'
|
|
jsonschema = require '../../app/schemas/models/level'
|
|
|
|
LevelSchema = new mongoose.Schema({
|
|
description: String
|
|
}, {strict: false})
|
|
|
|
LevelSchema.plugin(plugins.NamedPlugin)
|
|
LevelSchema.plugin(plugins.PermissionsPlugin)
|
|
LevelSchema.plugin(plugins.VersionedPlugin)
|
|
LevelSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
|
|
LevelSchema.plugin(plugins.PatchablePlugin)
|
|
|
|
LevelSchema.pre 'init', (next) ->
|
|
return next() unless jsonschema.properties?
|
|
for prop, sch of jsonschema.properties
|
|
@set(prop, _.cloneDeep(sch.default)) if sch.default?
|
|
next()
|
|
|
|
LevelSchema.post 'init', (doc) ->
|
|
if _.isString(doc.get('nextLevel'))
|
|
doc.set('nextLevel', undefined)
|
|
|
|
module.exports = Level = mongoose.model('level', LevelSchema)
|