Endpoint as deprecated
Use the #swagger.deprecated = true
to inform that a given endpoint is depreciated, for example:
app.get('/path', (req, res) => {
...
// #swagger.deprecated = true
...
});
NOTE: By default is false.
Use the #swagger.deprecated = true
to inform that a given endpoint is depreciated, for example:
app.get('/path', (req, res) => {
...
// #swagger.deprecated = true
...
});
NOTE: By default is false.