Allows admins to manage grading report templates #14

Merged
niat8586 merged 41 commits from 3482-new-grading-criteria into develop 2024-10-30 10:05:23 +01:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit 55b6552d6a - Show all commits

View File

@ -17,6 +17,7 @@ class EditingGradingTemplate implements Serializable {
EditingGradingTemplate(GradingReportTemplate template) {
this.note = "";
this.validFrom = template.getValidFrom();
this.gradeLimits = new GradeLimits();
this.criteria = new ArrayList<>();
for (var criteria : template.getCriteria()) {

View File

@ -10,7 +10,6 @@ class GradeLimits implements Serializable {
GradeLimits() {
this.gradeLimits = new ArrayList<>();
this.gradeLimits.add(new GradeLimit());
}
void addNewLimit() {