mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Added an endpoint for loading all items.
This commit is contained in:
parent
d3fb168636
commit
04e8680263
1 changed files with 12 additions and 0 deletions
|
@ -26,4 +26,16 @@ ThangTypeHandler = class ThangTypeHandler extends Handler
|
|||
hasAccess: (req) ->
|
||||
req.method is 'GET' or req.user?.isAdmin()
|
||||
|
||||
get: (req, res) ->
|
||||
if req.query.view is 'items'
|
||||
projection = {}
|
||||
if req.query.project
|
||||
projection[field] = 1 for field in req.query.project.split(',')
|
||||
ThangType.find({ 'kind': 'Item' }, projection).exec (err, documents) =>
|
||||
return @sendDatabaseError(res, err) if err
|
||||
documents = (@formatEntity(req, doc) for doc in documents)
|
||||
@sendSuccess(res, documents)
|
||||
else
|
||||
super(arguments...)
|
||||
|
||||
module.exports = new ThangTypeHandler()
|
||||
|
|
Loading…
Add table
Reference in a new issue