mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
14 lines
438 B
CoffeeScript
14 lines
438 B
CoffeeScript
c = require './../schemas'
|
|
|
|
ClassroomSchema = c.object {title: 'Classroom', required: ['name']}
|
|
c.extendNamedProperties ClassroomSchema # name first
|
|
|
|
_.extend ClassroomSchema.properties,
|
|
members: c.array {title: 'Members'}, c.objectId()
|
|
ownerID: c.objectId()
|
|
description: {type: 'string'}
|
|
code: c.shortString(title: "Unique code to redeem")
|
|
|
|
c.extendBasicProperties ClassroomSchema, 'Classroom'
|
|
|
|
module.exports = ClassroomSchema
|