mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-03 04:17:12 -05:00
17 lines
301 B
CoffeeScript
17 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
|
||
|
}
|
||
|
)
|