Update DEFAULT_SCHEMA_CLASSES default value in Settings docs

The default value was changed to point to the OpenAPI AutoSchema class.  The docs were leading users to believe that rest_framework.schemas.AutoSchema was the default.  As of this commit, the root AutoSchema is in fact imported from the coreapi module.
This commit is contained in:
Aaron Yong 2019-10-23 23:46:41 -06:00
parent 64f567a021
commit 554f991ddc

View File

@ -101,7 +101,7 @@ Default: `'rest_framework.negotiation.DefaultContentNegotiation'`
A view inspector class that will be used for schema generation. A view inspector class that will be used for schema generation.
Default: `'rest_framework.schemas.AutoSchema'` Default: `'rest_framework.schemas.openapi.AutoSchema'`
--- ---