mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
8 lines
No EOL
263 B
CoffeeScript
8 lines
No EOL
263 B
CoffeeScript
CocoCollection = require 'models/CocoCollection'
|
|
|
|
module.exports = class ModelFiles extends CocoCollection
|
|
constructor: (model) ->
|
|
super()
|
|
url = model.constructor.prototype.urlRoot
|
|
url += "/#{model.get('original') or model.id}/files"
|
|
@url = url |