Open Flaque opened 5 months ago
In the example below, I would expect the /hideme route to be hidden, because it has the excluded tag.
/hideme
import swagger from "@elysiajs/swagger"; import Elysia from "elysia"; const app = new Elysia(); app .get("/hideme", "hidden", { tags: ["excluded"], }) .get("/showme", "shown") .use(swagger({ excludeTags: ["excluded"], })); app.listen(3001);
However, it still appears in the Scalar documentation at /swagger.
/swagger
This is on the following versions:
"@elysiajs/swagger": "^1.0.5", "elysia": "^1.0.25",
Overview
In the example below, I would expect the
/hideme
route to be hidden, because it has the excluded tag.However, it still appears in the Scalar documentation at
/swagger
.Versions
This is on the following versions: