1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-06-03 13:13:09 +03:00
django-rest-framework/tests/browsable_api/no_auth_urls.py
itsdkey e7af8d662b
tests for ()
* tests for 

* Resolves 
2022-06-08 13:41:26 +01:00

9 lines
218 B
Python

from django.urls import path
from .views import BasicModelWithUsersViewSet, MockView
urlpatterns = [
path('', MockView.as_view()),
path('basicviewset', BasicModelWithUsersViewSet.as_view({'get': 'list'})),
]