Can I restrict my Django Rest Framework to be only accessed by super users?
Can I add a decorator to the urls so that the url is only accessed by super users:
url(r'^api/', include(router.urls)),
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
login_requiredorpermission_classes