mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-31 07:12:49 -04: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"
|
||
|
|