mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 01:55:38 -05:00
13 lines
409 B
CoffeeScript
13 lines
409 B
CoffeeScript
|
CourseInstance = require 'models/CourseInstance'
|
||
|
CocoCollection = require 'collections/CocoCollection'
|
||
|
|
||
|
module.exports = class CourseInstances extends CocoCollection
|
||
|
model: CourseInstance
|
||
|
url: '/db/course_instance'
|
||
|
|
||
|
fetchByOwner: (ownerID, options={}) ->
|
||
|
ownerID = ownerID.id or ownerID # handle if they pass in a user
|
||
|
options.data ?= {}
|
||
|
options.data.ownerID = ownerID
|
||
|
@fetch(options)
|