Skip to content

Commit fd8fa96

Browse files
authored
Recognise Slack as a submission type (#10)
But don't do anything about them for now.
1 parent ee198da commit fd8fa96

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/course.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,10 @@ fn parse_issue(issue: &Issue) -> Result<Option<(NonZeroUsize, Option<Assignment>
231231
// TODO: Handle these.
232232
None
233233
}
234+
"Slack" => {
235+
// TODO: Handle these.
236+
None
237+
}
234238
other => {
235239
return Err(Error::UserFacing(format!(
236240
"Failed to parse issue {} - submit label wasn't recognised: {}",

0 commit comments

Comments
 (0)