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/components/level_component_handler.coffee

28 lines
No EOL
660 B
CoffeeScript

LevelComponent = require('./LevelComponent')
Handler = require('../../commons/Handler')
LevelComponentHandler = class LevelComponentHandler extends Handler
modelClass: LevelComponent
jsonSchema: require './level_component_schema'
editableProperties: [
'system'
'description'
'code'
'js'
'language'
'dependencies'
'propertyDocumentation'
'configSchema'
'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 LevelComponentHandler()