This commit is contained in:
root 2020-07-16 15:43:18 +00:00
parent 51208cad8d
commit 76fd9fb811
19 changed files with 3439 additions and 325 deletions

View file

@ -85,9 +85,9 @@ const Organization = new Schema({
validationState: {
type: AllowedString,
required: true,
default: 'none',
default: 'unaware',
name: 'ValidationState',
allowedValues: ['none', 'pending', 'rejected', 'published']
allowedValues: ['unaware', 'pending', 'rejected', 'published']
},
rejectionDescription: { type: String },
proposedVersion: OrganizationVersion,