mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-04 21:01:06 -05:00
486949d07c
* adminOnly course field * Properly check not-admin-only when fetching courses
18 lines
808 B
CoffeeScript
18 lines
808 B
CoffeeScript
c = require './../schemas'
|
|
|
|
CourseSchema = c.object {title: 'Course', required: ['name']}
|
|
c.extendNamedProperties CourseSchema # name first
|
|
|
|
_.extend CourseSchema.properties,
|
|
campaignID: c.objectId()
|
|
concepts: c.array {title: 'Programming Concepts', uniqueItems: true}, c.concept
|
|
description: {type: 'string'}
|
|
duration: {type: 'number', description: 'Approximate hours of content'}
|
|
pricePerSeat: {type: 'number', description: 'Price per seat in USD cents.'} # deprecated
|
|
free: { type: 'boolean' }
|
|
screenshot: c.url {title: 'URL', description: 'Link to course screenshot.'}
|
|
adminOnly: {type: 'boolean', description: 'Whether the course is in admin-only testing mode still and will not show up for normal users.'}
|
|
|
|
c.extendBasicProperties CourseSchema, 'Course'
|
|
|
|
module.exports = CourseSchema
|