Support downloading every course

This commit is contained in:
FliegendeWurst 2022-01-07 12:21:40 +01:00
parent b44c31d8d4
commit 7d641d5329

View File

@ -482,7 +482,8 @@ impl Object {
None => Course { name, url },
},
"ilobjplugindispatchgui" => PluginDispatch { name, url },
"ildashboardgui" => Dashboard { url },
// both the dashboard and the membership overview page work the same
"ildashboardgui" | "ilmembershipoverviewgui" => Dashboard { url },
_ => Generic { name, url },
})
}