2014-04-28 17:58:58 -04:00
|
|
|
ThangType = require 'models/ThangType'
|
|
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
|
|
|
|
|
|
module.exports = class ThangNamesCollection extends CocoCollection
|
|
|
|
url: '/db/thang.type/names'
|
|
|
|
model: ThangType
|
|
|
|
isCachable: false
|
|
|
|
|
2014-11-25 18:36:24 -05:00
|
|
|
constructor: (@ids) ->
|
|
|
|
super()
|
|
|
|
@ids.sort()
|
|
|
|
if @ids.length > 55
|
|
|
|
console.error 'Too many ids, we\'ll likely go over the GET url kind-of-limit of 2000 characters.'
|
2014-06-30 22:16:26 -04:00
|
|
|
|
2014-05-02 13:31:20 -04:00
|
|
|
fetch: (options) ->
|
|
|
|
options ?= {}
|
2014-11-25 18:36:24 -05:00
|
|
|
_.extend options, {data: {ids: @ids}}
|
2014-05-02 13:31:20 -04:00
|
|
|
super(options)
|