[AB-191] grouping invite links in invite link deletion notification

This commit is contained in:
Sheldan
2021-02-14 19:09:53 +01:00
parent 94532be54d
commit a536a0c2b3
5 changed files with 35 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ public class FeatureValidationResult implements Templatable {
@Override
public Object getTemplateModel() {
HashMap<String, Object> params = new HashMap<>();
params.put("featureTemplate", this.feature.getFeature().getKey() + "_feature");
params.put("featureTemplate", "feature_" + this.feature.getFeature().getKey());
params.put("errors", this.validationErrorModels);
return params;
}