mo_shop/urls.py
from django.urls import path, include from rest_framework.documentation import include_docs_urls urlpatterns = [ ... path('docs/', include_docs_urls(title='Mo shop')), ]
mo_shop/settings.py
REST_FRAMEWORK = { ... 'DEFAULT_SCHEMA_CLASS': 'rest_framework.schemas.AutoSchema', }
Last updated 4 years ago
Was this helpful?