({
prompt,
code,
studentSubmission,
solution,
options,
interactiveArt,
})
| 94 | } |
| 95 | } |
| 96 | export function insertCodeData ({ |
| 97 | prompt, |
| 98 | code, |
| 99 | studentSubmission, |
| 100 | solution, |
| 101 | options, |
| 102 | interactiveArt, |
| 103 | }) { |
| 104 | return { |
| 105 | type: INSERT_CODE, |
| 106 | prompt, |
| 107 | code, |
| 108 | studentSubmission, |
| 109 | solution, |
| 110 | options, |
| 111 | interactiveArt, |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | export default { |
| 116 | namespaced: true, |
no outgoing calls
no test coverage detected