Following a book on django, at the point where it is discussing building a custom authentication backend. It states "The AUTHENTICATION_BACKENDS settings includes the list of authentication backends for your project. By default, this setting is set as follows: ['django.conrib.auth.backends.ModelBackend']" but nowhere in my settings.py do I see AUTHENTICATION_BACKENDS = ['django.conrib.auth.backends.ModelBackend'].
This book uses Django 2. So I figured something may have changed, but the Django 3 documentation also states "By default, AUTHENTICATION_BACKENDS is set to:
['django.contrib.auth.backends.ModelBackend']"
Should I be looking somewhere else for this setting? I thought all settings were found in settings.py