mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
12 lines
409 B
CoffeeScript
12 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)
|