mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
17 lines
436 B
CoffeeScript
17 lines
436 B
CoffeeScript
Classroom = require 'models/Classroom'
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
|
|
module.exports = class Classrooms extends CocoCollection
|
|
model: Classroom
|
|
url: '/db/classroom'
|
|
|
|
initialize: ->
|
|
@on 'sync', =>
|
|
for classroom in @models
|
|
classroom.capitalizeLanguageName()
|
|
super(arguments...)
|
|
|
|
fetchMine: (options={}) ->
|
|
options.data ?= {}
|
|
options.data.ownerID = me.id
|
|
@fetch(options)
|