mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-02 20:07:25 -05:00
729cd300b7
- move and rename files - use associative arrays which store handlers for 'dynamically' load module from de db route - store models_path in test/server/common, a global model variable has the same name that the filename of the model
9 lines
No EOL
246 B
CoffeeScript
9 lines
No EOL
246 B
CoffeeScript
mongoose = require('mongoose')
|
|
Level = require('../Level')
|
|
|
|
LevelDraftSchema = new mongoose.Schema(
|
|
user: {type: mongoose.Schema.ObjectId, ref: 'User'}
|
|
level: {}
|
|
)
|
|
|
|
module.exports = LevelDraft = mongoose.model('level.draft', LevelDraftSchema) |