django-rest-framework-docs
django-rest-framework-docs copied to clipboard
API Category Title manually changed in the urls.py
Hi,
As you can see the title of my API category is "None" and I understand it is because I have a blank regex. But there cases that it will be useful if we can change the category title manually rather than it is automatically added by the parent url
I was wondering if it is possible to change the title of my API category to the urls.py like this:
from django.conf.urls import url, include
urlpatterns = [
url(r'^', include('api.v1.store.urls', namespace='artists', app_name='artists')),
url(r'^docs/', include('rest_framework_docs.urls')),
]