mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
12 lines
No EOL
302 B
CoffeeScript
12 lines
No EOL
302 B
CoffeeScript
Campaign = require 'models/Campaign'
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
|
|
module.exports = class Campaigns extends CocoCollection
|
|
model: Campaign
|
|
url: '/db/campaign'
|
|
|
|
fetchByType: (type, options={}) ->
|
|
options.data ?= {}
|
|
options.data.type = type
|
|
@fetch(options)
|
|
|