mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
9 lines
295 B
CoffeeScript
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()
|