mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-02 11:58:10 -05:00
16 lines
301 B
CoffeeScript
16 lines
301 B
CoffeeScript
Classroom = require 'models/Classroom'
|
|
|
|
module.exports = new Classroom(
|
|
{
|
|
_id: "classroom_archived",
|
|
name: "Teacher Zero's Archived Classroom"
|
|
members: [
|
|
"student0",
|
|
"student3",
|
|
],
|
|
ownerID: "teacher0",
|
|
aceConfig:
|
|
language: 'python'
|
|
archived: true
|
|
}
|
|
)
|