diff --git a/asab/api/doc.py b/asab/api/doc.py index 55400551..159e089e 100644 --- a/asab/api/doc.py +++ b/asab/api/doc.py @@ -89,7 +89,7 @@ def build_swagger_documentation(self, host) -> dict: continue # Determine which routes are asab-based - if re.search("(asab|doc|oauth2-redirect.html)", self.get_route_path(route)): + if re.search("(asab|doc|oauth2-redirect.html|bspump)", self.get_route_path(route)): asab_routes.append(self.parse_route_data(route)) else: routes.append(self.parse_route_data(route))