Remove erronous deletions, revert bench icon, add sanity check to delete config

This commit is contained in:
Pieter Vander Vennet 2021-08-05 16:20:25 +02:00
parent c3d5e4f1ec
commit 1f84e5fb3a
3 changed files with 23 additions and 91 deletions

View file

@ -40,6 +40,10 @@ export default class DeleteConfig {
this.softDeletionTags = FromJSON.Tag(json.softDeletionTags,`${context}.softDeletionTags`)
}
if(json["hardDeletionTags"] !== undefined){
throw `You probably meant 'softDeletionTags' instead of 'hardDeletionTags' (at ${context})`
}
this.neededChangesets = json.neededChangesets
}