adding tags to the api_controller decorator used to add the controller to that tag on the swagger document. This seems to have broken since 0.31.
@api_controller('/client', tags=['/client'])
class ClientController(ModelControllerBase):
model_config = client_model_config
serializer_class = ClientModelService
To force the API onto a tag I need to add ModelConfig : create_route_info={"tags": ["client"], },
adding tags to the
api_controllerdecorator used to add the controller to that tag on the swagger document. This seems to have broken since 0.31.To force the API onto a tag I need to add ModelConfig :
create_route_info={"tags": ["client"], },