This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This will be the BriefTemplate model which all Briefs will need to use. A BriefTemplate will always reference a 'type' which will be | |
// how we identify what further fields to use for that particular Brief. | |
{ | |
type: { | |
type: String, | |
enum: ['WEBSITE', 'ANDROID_APP'], | |
default: 'WEBSITE' | |
}, | |
status: { |