Closed sarkistlt closed 6 years ago
use ignore
in swagger's config
For future visitors. To ignore e.g. the authentication
and projects
endpoints:
app.configure(swagger({
docsPath: '/docs',
uiIndex: true, // src/docs.html
info: {
title: 'A test',
description: 'A description'
},
ignore: {
tags: ['authentication', 'projects']
}
}));
is it possible to exclude certain services?