Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • jw_sonar
  • jw_sonar_backup
  • main
  • move-to-esm-only
  • open_tool_for_self_hosting
  • v5.0
  • v4.1
  • v4.2
8 results

Target

Select target project
  • dojo_project/projects/shared/nodesharedcode
1 result
Select Git revision
  • jw_sonar
  • jw_sonar_backup
  • main
  • move-to-esm-only
  • open_tool_for_self_hosting
  • v5.0
  • v4.1
  • v4.2
8 results
Show changes
Commits on Source (2)
...@@ -16,8 +16,10 @@ class SharedAssignmentHelper { ...@@ -16,8 +16,10 @@ class SharedAssignmentHelper {
immutable: { immutable: {
elements: { elements: {
properties : { properties : {
path: { type: 'string' }
},
optionalProperties: {
description: { type: 'string' }, description: { type: 'string' },
path : { type: 'string' },
isDirectory: { type: 'boolean' } isDirectory: { type: 'boolean' }
} }
} }
......
enum ExerciseCheckerError {
DOCKER_DAEMON_NOT_RUNNING = 200,
REQUIRED_FILES_MISSING = 201,
ASSIGNMENT_FILE_SCHEMA_ERROR = 202,
IMMUTABLE_PATH_NOT_FOUND = 203,
IMMUTABLE_PATH_IS_DIRECTORY = 204,
IMMUTABLE_PATH_IS_NOT_DIRECTORY = 205,
COMPOSE_FILE_YAML_ERROR = 206,
COMPOSE_FILE_SCHEMA_ERROR = 207,
COMPOSE_FILE_CONTAINER_MISSING = 208,
COMPOSE_FILE_VOLUME_MISSING = 209,
DOCKERFILE_NOT_FOUND = 210,
COMPOSE_RUN_SUCCESSFULLY = 211, // Yes, this is an error
}
/**
* Codes that are unusable for historic reasons:
* None
*/
export default ExerciseCheckerError;
\ No newline at end of file
interface ImmutableFileDescriptor { interface ImmutableFileDescriptor {
description: string, description?: string,
path: string, path: string,
isDirectory: boolean, isDirectory?: boolean,
} }
......