django-rest-framework-docs
django-rest-framework-docs copied to clipboard
How to regroup endpoints by namespace?
by name_parent is not good.
I write this url(r'^api/v1/', include('game.urls', namespace='game')), url(r'^api/v1/', include('myuser.urls', namespace='account')),
and the group name is 'api/v1'
I want the same. I saw this pull https://github.com/manosim/django-rest-framework-docs/pull/48, but I not found a way to group the services by namespace yet. Is it possible to do this?