super(userRepository, workspaceRepository, configuration);
}
@Override
public void handle(HttpServletRequest request, HttpServletResponse response, HandlerChain chain) throws Exception {
App app = App.getApp(request);
List<String> paths = getPaths(app);
String out = pathsToHtml(paths);
respondWithHtml(response, out);
}