mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-30 19:06:59 -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
13 lines
334 B
CoffeeScript
13 lines
334 B
CoffeeScript
File = require('./File')
|
|
Handler = require('../commons/Handler')
|
|
|
|
FileHandler = class FileHandler extends Handler
|
|
modelClass: File
|
|
editableProperties: ['metadata']
|
|
|
|
hasAccess: (req) ->
|
|
req.method is 'GET'
|
|
|
|
# TODO: once we're building the clients, need special GET handler, search handler
|
|
|
|
module.exports = new FileHandler()
|