mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -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
28 lines
663 B
CoffeeScript
28 lines
663 B
CoffeeScript
winston = require('winston')
|
|
request = require('request')
|
|
LevelSystem = require('./LevelSystem')
|
|
Handler = require('../../commons/Handler')
|
|
|
|
LevelSystemHandler = class LevelSystemHandler extends Handler
|
|
modelClass: LevelSystem
|
|
editableProperties: [
|
|
'description'
|
|
'code'
|
|
'js'
|
|
'language'
|
|
'dependencies'
|
|
'propertyDocumentation'
|
|
'configSchema'
|
|
]
|
|
postEditableProperties: ['name']
|
|
|
|
getEditableProperties: (req, document) ->
|
|
props = super(req, document)
|
|
props.push('official') if req.user?.isAdmin()
|
|
props
|
|
|
|
hasAccess: (req) ->
|
|
req.method is 'GET' or req.user?.isAdmin()
|
|
|
|
|
|
module.exports = new LevelSystemHandler()
|