Reputation: 264
I have an application that has multiple controllers that those controllers have within them 2 routes @Controller(['1/:someParam', '/2/:someParam'])
but when I create swagger it shows both of them within the same group, what I need is to be able to group those as well.
Is there any possible way to create such a thing?
Upvotes: 0
Views: 2020
Reputation: 57
You can use ApiTags. @ApiTags('firsturl', 'secondurl') ApiTags accept string array as parameter.
Upvotes: 2