[Fixed]-Django REST url does not match patterns

1👍

Your second version of the URLs correctly terminates the account list pattern, but your first does not.

url(r'^$', AccountListView.as_view()),

Leave a comment