2014-06-30 22:16:26 -04:00
|
|
|
mongoose = require 'mongoose'
|
2016-04-06 13:56:06 -04:00
|
|
|
plugins = require '../plugins/plugins'
|
|
|
|
jsonschema = require '../../app/schemas/models/level_system'
|
|
|
|
config = require '../../server_config'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
LevelSystemSchema = new mongoose.Schema {
|
|
|
|
description: String
|
2015-03-21 21:49:32 -04:00
|
|
|
}, {strict: false,read:config.mongo.readpref}
|
2014-01-03 13:32:13 -05:00
|
|
|
|
2015-01-27 13:02:47 -05:00
|
|
|
LevelSystemSchema.index(
|
|
|
|
{
|
|
|
|
index: 1
|
|
|
|
_fts: 'text'
|
|
|
|
_ftsx: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'search index'
|
|
|
|
sparse: true
|
2016-01-06 09:24:22 -05:00
|
|
|
weights: {description: 1, name: 1}
|
2015-01-27 13:02:47 -05:00
|
|
|
default_language: 'english'
|
|
|
|
'language_override': 'searchLanguage'
|
|
|
|
'textIndexVersion': 2
|
|
|
|
})
|
|
|
|
LevelSystemSchema.index(
|
|
|
|
{
|
|
|
|
original: 1
|
|
|
|
'version.major': -1
|
|
|
|
'version.minor': -1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'version index'
|
|
|
|
unique: true
|
|
|
|
})
|
|
|
|
LevelSystemSchema.index({slug: 1}, {name: 'slug index', sparse: true, unique: true})
|
|
|
|
|
2014-01-03 13:32:13 -05:00
|
|
|
LevelSystemSchema.plugin(plugins.NamedPlugin)
|
|
|
|
LevelSystemSchema.plugin(plugins.PermissionsPlugin)
|
|
|
|
LevelSystemSchema.plugin(plugins.VersionedPlugin)
|
|
|
|
LevelSystemSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
|
2014-04-08 22:26:19 -04:00
|
|
|
LevelSystemSchema.plugin(plugins.PatchablePlugin)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = LevelSystem = mongoose.model('level.system', LevelSystemSchema)
|