django-rest-framework-docs icon indicating copy to clipboard operation
django-rest-framework-docs copied to clipboard

API Category Title manually changed in the urls.py

Open Dean-Christian-Armada opened this issue 9 years ago • 0 comments

Hi,

screen shot 2016-07-23 at 6 15 14 pm

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')),
]

Dean-Christian-Armada avatar Jul 23 '16 10:07 Dean-Christian-Armada