Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions components/rsptx/data_types/question_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,18 @@ class QuestionType(Enum):
"Embed external content using an iFrame",
)

DOENET = (
"doenet",
"Doenet",
"Embed an interactive activity using Doenet",
)

SPLICE = (
"splice",
"SPLICE",
"Embed an external interactive activity using SPLICE",
)

def to_dict(self):
return {
"value": self.value[0],
Expand Down
Loading