This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (JSON)
When running on latest Django, there is a warning message:
/usr/local/lib/python3.9/site-packages/rest_auth/urls.py:18: RemovedInDjango40Warning: django.conf.urls.url() is deprecated in favor of django.urls.re_path()
This PR fixes that by changing url to re_path, as suggested in the warning.
When running on latest Django, there is a warning message:
This PR fixes that by changing url to re_path, as suggested in the warning.