Skip to content
Snippets Groups Projects
Commit 94ef50df authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed typo, added comments

parent e5b5cd39
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ export interface ExerciseReleaseBase { ...@@ -19,6 +19,7 @@ export interface ExerciseReleaseBase {
readonly isReleased: boolean readonly isReleased: boolean
/** /**
* the generated code * the generated code
* (not needed when creating)
*/ */
readonly generatedCode: string readonly generatedCode: string
...@@ -31,6 +32,7 @@ export interface ExerciseReleaseBase { ...@@ -31,6 +32,7 @@ export interface ExerciseReleaseBase {
readonly availableWorkingTimeInMinutes: number | null readonly availableWorkingTimeInMinutes: number | null
/** /**
* true: is visible to all after the release * true: is visible to all after the release
* (no release code needed)
*/ */
readonly isVisibleToAllAfterRelease: boolean readonly isVisibleToAllAfterRelease: boolean
/** /**
...@@ -53,22 +55,25 @@ export interface ExerciseReleaseBase { ...@@ -53,22 +55,25 @@ export interface ExerciseReleaseBase {
/** /**
* true: automatic assessment has started, false: not * true: automatic assessment has started, false: not
* (not needed when creating)
*/ */
readonly hasAutomaticAssessmentStarted: boolean readonly hasAutomaticAssessmentStarted: boolean
/** /**
* true: automatic assessment has finished, false: not * true: automatic assessment has finished, false: not
* (not needed when creating)
*/ */
readonly hasAutomaticAssessmentFinished: boolean readonly hasAutomaticAssessmentFinished: boolean
/** /**
* true: some error occurred in the last automatic assessment (after the first error all other assessments are skipped), * true: some error occurred in the last automatic assessment (after the first error all other assessments are skipped),
* false: everything ok * false: everything ok
* (not needed when creating)
*/ */
readonly hadAutomaticAssessmentErrors: boolean readonly hadAutomaticAssessmentErrors: boolean
/** /**
* the plang to user can use * the plang the user can use
*/ */
readonly pLangId: number readonly pLangId: number
...@@ -85,6 +90,7 @@ export interface ExerciseReleaseBase { ...@@ -85,6 +90,7 @@ export interface ExerciseReleaseBase {
* the date time when the release as actually released (usefully when manually released) * the date time when the release as actually released (usefully when manually released)
* *
* only set when we got the release from server and it was released... * only set when we got the release from server and it was released...
* (not needed when creating)
*/ */
readonly releasedAt: Moment | null readonly releasedAt: Moment | null
......
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