django-react-redux-users-tutorial
django-react-redux-users-tutorial copied to clipboard
Your code in your blog misled me.
This is your code:
from django.conf.urls import url from . import views
urlpatterns = [ url(r'api/users^$', views.UserCreate.as_view(), name='account-create'), ]
I have spent 2 hours looking for whats wrong. The correct is:
from django.conf.urls import url from . import views
urlpatterns = [ url(r'^api/users$', views.UserCreate.as_view(), name='account-create'), ]