mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
11 lines
371 B
CoffeeScript
11 lines
371 B
CoffeeScript
CocoCollection = require 'collections/CocoCollection'
|
|
Achievement = require 'models/Achievement'
|
|
|
|
module.exports = class AchievementCollection extends CocoCollection
|
|
url: '/db/achievement'
|
|
model: Achievement
|
|
|
|
fetchRelatedToLevel: (levelOriginal, options) ->
|
|
options = _.extend({data: {}}, options)
|
|
options.data.related = levelOriginal
|
|
@fetch(options)
|