Skip to content
Snippets Groups Projects

Resolve "Can not delete a shared lab from the shared edition overview"

Files

@@ -528,7 +528,9 @@ public class LabController {
ls.deleteSession(qSession);
var session = sCache.getOrThrow(qSession.getSession());
// TODO: Redirect to an edition collection specific page for shared labs
if (session.getEditionCollection() != null) {
return "redirect:/shared-edition/" + session.getEditionCollection().getId();
}
return "redirect:/edition/" + session.getEditions().get(0).getId() + "/labs";
}
Loading