In django RestFramework, is there any \"official\" way to generate the documentation for the \"Api Root\" ?
After looking at the RestFramework\'s source code, I\'ve foun
If anyone wants an inline style
router = DefaultRouter() router.get_api_root_view().cls.__name__ = "Root API name" router.get_api_root_view().cls.__doc__ = "Your Description"