mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-02-16 08:29:56 -05:00
8 lines
222 B
CoffeeScript
8 lines
222 B
CoffeeScript
|
CocoCollection = require 'collections/CocoCollection'
|
||
|
|
||
|
module.exports = class EarnedAchievementCollection extends CocoCollection
|
||
|
|
||
|
initialize: (me = require('lib/auth').me) ->
|
||
|
@url = "/db/user/#{me.id}/achievements"
|
||
|
|