0

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?

1 Answers1

1

You can use ApiTags. @ApiTags('firsturl', 'secondurl') ApiTags accept string array as parameter.