mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
d7cddcb136
Add a teacher survey form for applying for a free trial subscription for evaluation purposes. Add an admin trial requests review page, where admins can approve/deny requests.
18 lines
659 B
CoffeeScript
18 lines
659 B
CoffeeScript
c = require './../schemas'
|
|
|
|
TrialRequestSchema = c.object {
|
|
title: 'Trial request',
|
|
required: ['type']
|
|
}
|
|
|
|
_.extend TrialRequestSchema.properties,
|
|
applicant: c.objectId(links: [{rel: 'extra', href: '/db/user/{($)}'}])
|
|
prepaidCode: c.objectId()
|
|
reviewDate: c.date({readOnly: true})
|
|
reviewer: c.objectId(links: [{rel: 'extra', href: '/db/user/{($)}'}])
|
|
properties: {type: 'object', description: 'Data specific to this request.'}
|
|
status: {type: 'string', 'enum': ['submitted', 'approved', 'denied']}
|
|
type: {type: 'string', 'enum': ['subscription']}
|
|
|
|
c.extendBasicProperties TrialRequestSchema, 'TrialRequest'
|
|
module.exports = TrialRequestSchema
|