mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 09:35:39 -05:00
25 lines
333 B
CoffeeScript
25 lines
333 B
CoffeeScript
Users = require 'collections/Users'
|
|
|
|
module.exports = new Users(
|
|
[
|
|
{
|
|
_id: "student0"
|
|
name: "Student Zero"
|
|
}
|
|
|
|
{
|
|
_id: "student1"
|
|
name: "Student One"
|
|
}
|
|
|
|
{
|
|
_id: "student2"
|
|
name: "Student Two"
|
|
}
|
|
|
|
{
|
|
_id: "student3"
|
|
name: "Student Three"
|
|
}
|
|
]
|
|
)
|