codecombat/app/collections/EarnedAchievementCollection.coffee
2014-08-08 19:26:24 +02:00

9 lines
295 B
CoffeeScript

CocoCollection = require 'collections/CocoCollection'
EarnedAchievement = require 'models/EarnedAchievement'
module.exports = class EarnedAchievementCollection extends CocoCollection
model: EarnedAchievement
initialize: (userID) ->
@url = "/db/user/#{userID}/achievements"
super()