I am currently using django-rest-passwordreset package but when I go to reset-password endpoint DRF browsable API is not working (package doc mentioned that browsable API support is available).
urlpatterns = [
path('password-reset/', include('django_rest_passwordreset.urls', namespace='password_reset')),
]
Is there any settings that I have to change?