You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set the minimum version of drf-spectacular to 0.29.0
Account for the format query parameter raising 404 errors when generating the API schema for error responses. This
will result in any project using the default value for REST_FRAMEWORK["URL_FORMAT_OVERRIDE"] showing 404 errors for
every operation. That's because DRF enables the format query parameter in every endpoint by default. If you don't
need the format query parameter for content negotiation, you can disable it by setting "URL_FORMAT_OVERRIDE"
to None in DRF settings. Refer to DRF docs for more information.