mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-26 00:58:00 -05:00
7 lines
182 B
CoffeeScript
7 lines
182 B
CoffeeScript
|
CocoCollection = require 'collections/CocoCollection'
|
||
|
Level = require 'models/Level'
|
||
|
|
||
|
module.exports = class LevelCollection extends CocoCollection
|
||
|
url: '/db/level'
|
||
|
model: Level
|