Is there any common pattern for routing APIViews (ie, not ViewSets) with Django Rest Framework?
APIViews
ViewSets
For example, if I\'ve got an API V
Is there any standard pattern — apart from writing out a standard Django URL router — for routing that view?
ViewSets & Routers are the pattern if you want standardised routing.
If you're using views then just use a regular Django URLconf.