mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
9 lines
286 B
CoffeeScript
9 lines
286 B
CoffeeScript
CocoCollection = require './CocoCollection'
|
|
LevelSession = require 'models/LevelSession'
|
|
|
|
module.exports = class RecentlyPlayedCollection extends CocoCollection
|
|
model: LevelSession
|
|
|
|
constructor: (userID, options) ->
|
|
@url = "/db/user/#{userID}/recently_played"
|
|
super options
|