mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
11 lines
354 B
CoffeeScript
11 lines
354 B
CoffeeScript
ThangType = require 'models/ThangType'
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
|
|
module.exports = class ThangNamesCollection extends CocoCollection
|
|
url: '/db/thang.type/names'
|
|
model: ThangType
|
|
isCachable: false
|
|
|
|
constructor: (ids) ->
|
|
console.log 'data', {type:'POST', data:{ids:ids}}
|
|
super([], {type:'POST', data:{ids:ids}})
|