We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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",
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: