mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-29 18:45:48 -05:00
commit
b9e9e6d2e6
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.'},
|
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'}}
|
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.'},
|
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
|
# denormalization
|
||||||
userName: {title: 'Player Name', type: 'string'}
|
userName: {title: 'Player Name', type: 'string'}
|
||||||
|
|
|
@ -403,6 +403,10 @@ sendEmployerNewCandidatesAvailableEmail = (employer, cb) ->
|
||||||
cb null
|
cb null
|
||||||
|
|
||||||
### End Employer New Candidates Available Email ###
|
### End Employer New Candidates Available Email ###
|
||||||
|
|
||||||
|
### Task Emails ###
|
||||||
|
userRemarkTaskEmailTask = ->
|
||||||
|
|
||||||
|
|
||||||
### New Recruit Leaderboard Email ###
|
### New Recruit Leaderboard Email ###
|
||||||
###
|
###
|
||||||
|
|
Loading…
Reference in a new issue