minor layout fixes

This commit is contained in:
2023-09-05 20:30:21 -06:00
parent 5aaf474565
commit 2b154d186d
7 changed files with 60 additions and 36 deletions

View File

@@ -14,24 +14,24 @@ public static class SubmissionType
public static readonly string ONLINE_TEXT_ENTRY = "online_text_entry";
public static readonly string ONLINE_UPLOAD = "online_upload";
public static readonly string ONLINE_QUIZ = "online_quiz";
public static readonly string ON_PAPER = "on_paper";
// public static readonly string ON_PAPER = "on_paper";
public static readonly string DISCUSSION_TOPIC = "discussion_topic";
public static readonly string EXTERNAL_TOOL = "external_tool";
// public static readonly string EXTERNAL_TOOL = "external_tool";
public static readonly string ONLINE_URL = "online_url";
public static readonly string MEDIA_RECORDING = "media_recording";
public static readonly string STUDENT_ANNOTATION = "student_annotation";
// public static readonly string MEDIA_RECORDING = "media_recording";
// public static readonly string STUDENT_ANNOTATION = "student_annotation";
public static readonly string NONE = "none";
public static readonly IEnumerable<string> AllTypes = new string[]
{
ONLINE_TEXT_ENTRY,
ONLINE_UPLOAD,
ONLINE_QUIZ,
ON_PAPER,
// ON_PAPER,
DISCUSSION_TOPIC,
EXTERNAL_TOOL,
// EXTERNAL_TOOL,
ONLINE_URL,
MEDIA_RECORDING,
STUDENT_ANNOTATION,
// MEDIA_RECORDING,
// STUDENT_ANNOTATION,
NONE,
};
}