Skip to content
Snippets Groups Projects
Commit 14afab88 authored by uhensler's avatar uhensler
Browse files

O-4206: Show option to set fully assessed if status is done again

parent cb71ac84
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ public class CLLearningPathNodeHandler implements LearningPathNodeHandler { ...@@ -47,6 +47,7 @@ public class CLLearningPathNodeHandler implements LearningPathNodeHandler {
.enableConfirmed() .enableConfirmed()
.enableScore() .enableScore()
.enablePassed() .enablePassed()
.enableStatusDone()
.withTranslations(CheckListEditController.class) .withTranslations(CheckListEditController.class)
.withTriggerStatusDone("fully.assessed.trigger.status.done") .withTriggerStatusDone("fully.assessed.trigger.status.done")
.buildTranslations() .buildTranslations()
......
...@@ -44,6 +44,7 @@ public class ENLearningPathNodeHandler implements LearningPathNodeHandler { ...@@ -44,6 +44,7 @@ public class ENLearningPathNodeHandler implements LearningPathNodeHandler {
private static final LearningPathEditConfigs EDIT_CONFIGS = LearningPathEditConfigs.builder() private static final LearningPathEditConfigs EDIT_CONFIGS = LearningPathEditConfigs.builder()
.enableNodeVisited() .enableNodeVisited()
.enableConfirmed() .enableConfirmed()
.enableStatusDone()
.withTranslations(ENEditController.class) .withTranslations(ENEditController.class)
.withTriggerStatusDone("fully.assessed.trigger.status.done") .withTriggerStatusDone("fully.assessed.trigger.status.done")
.buildTranslations() .buildTranslations()
......
...@@ -46,6 +46,7 @@ public class IQTESTLearningPathNodeHandler implements LearningPathNodeHandler { ...@@ -46,6 +46,7 @@ public class IQTESTLearningPathNodeHandler implements LearningPathNodeHandler {
.enableConfirmed() .enableConfirmed()
.enableScore() .enableScore()
.enablePassed() .enablePassed()
.enableStatusDone()
.withTranslations(IQEditController.class) .withTranslations(IQEditController.class)
.withTriggerStatusDone("fully.assessed.trigger.status.in.review") .withTriggerStatusDone("fully.assessed.trigger.status.in.review")
.buildTranslations() .buildTranslations()
......
...@@ -46,6 +46,7 @@ public class MSLearningPathNodeHandler implements LearningPathNodeHandler { ...@@ -46,6 +46,7 @@ public class MSLearningPathNodeHandler implements LearningPathNodeHandler {
.enableConfirmed() .enableConfirmed()
.enableScore() .enableScore()
.enablePassed() .enablePassed()
.enableStatusDone()
.withTranslations(MSEditFormController.class) .withTranslations(MSEditFormController.class)
.withTriggerStatusDone("fully.assessed.trigger.status.done") .withTriggerStatusDone("fully.assessed.trigger.status.done")
.buildTranslations() .buildTranslations()
......
...@@ -45,6 +45,7 @@ public class SurveyLearningPathNodeHandler implements LearningPathNodeHandler { ...@@ -45,6 +45,7 @@ public class SurveyLearningPathNodeHandler implements LearningPathNodeHandler {
private static final LearningPathEditConfigs EDIT_CONFIGS = LearningPathEditConfigs.builder() private static final LearningPathEditConfigs EDIT_CONFIGS = LearningPathEditConfigs.builder()
.enableNodeVisited() .enableNodeVisited()
.enableConfirmed() .enableConfirmed()
.enableStatusDone()
.withTranslations(SurveyRunController.class) .withTranslations(SurveyRunController.class)
.withTriggerStatusDone("fully.assessed.trigger.status.done") .withTriggerStatusDone("fully.assessed.trigger.status.done")
.buildTranslations() .buildTranslations()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment