mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
Edited task schema
This commit is contained in:
parent
8c3613dfc7
commit
321bce121c
2 changed files with 21 additions and 1 deletions
|
@ -12,7 +12,23 @@ _.extend UserRemarkSchema.properties,
|
|||
history: c.array {title: 'History', description: 'Records of our interactions with the user.'},
|
||||
c.object {title: 'Record'}, {date: c.date(title: 'Date'), content: {title: 'Content', type: 'string', format: 'markdown'}}
|
||||
tasks: c.array {title: 'Tasks', description: 'Task entries: when to email the contact about something.'},
|
||||
c.object {title: 'Task'}, {date: c.date(title: 'Date'), action: {title: 'Action', type: 'string'}}
|
||||
c.object {title: 'Task'},
|
||||
date: c.date
|
||||
title: 'Date'
|
||||
action:
|
||||
title: 'Action'
|
||||
type: 'string'
|
||||
status:
|
||||
title: 'Status'
|
||||
description: 'The current status of the task'
|
||||
type: 'string'
|
||||
enum: ['Not started', 'In progress', 'Completed']
|
||||
notes:
|
||||
title: 'Notes'
|
||||
description: 'Notes about the task in progress'
|
||||
type: 'string'
|
||||
format: 'markdown'
|
||||
|
||||
|
||||
# denormalization
|
||||
userName: {title: 'Player Name', type: 'string'}
|
||||
|
|
|
@ -403,6 +403,10 @@ sendEmployerNewCandidatesAvailableEmail = (employer, cb) ->
|
|||
cb null
|
||||
|
||||
### End Employer New Candidates Available Email ###
|
||||
|
||||
### Task Emails ###
|
||||
userRemarkTaskEmailTask = ->
|
||||
|
||||
|
||||
### New Recruit Leaderboard Email ###
|
||||
###
|
||||
|
|
Loading…
Reference in a new issue