-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adaptive learning: Add option to import exercises and lecture units w…
…hen importing competencies (#9205)
- Loading branch information
1 parent
aee8c00
commit 9c16f13
Showing
73 changed files
with
3,258 additions
and
965 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/main/java/de/tum/cit/aet/artemis/atlas/dto/CompetencyImportOptionsDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package de.tum.cit.aet.artemis.atlas.dto; | ||
|
||
import java.time.ZonedDateTime; | ||
import java.util.Optional; | ||
import java.util.Set; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
|
||
@JsonInclude(JsonInclude.Include.NON_EMPTY) | ||
public record CompetencyImportOptionsDTO(Set<Long> competencyIds, Optional<Long> sourceCourseId, boolean importRelations, boolean importExercises, boolean importLectures, | ||
Optional<ZonedDateTime> referenceDate, boolean isReleaseDate) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.