Is it possible to somehow exclude duplicate routes from the documentation?
@Controller(['/api/v1/rate-plan', '/intraapi/rate-plan', '/fegw/rate-plan'])
export class RatePlanController {}
I want only one of the options in the documentation so that they are not duplicated(see screenshot).
Is it possible?
I did not find such options in the documentation.
And the @ApiExcludeEndpoint() decorator excludes the entire route, and I only need to remove its duplicates.