We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my drf project layout:
project: - urls.py api:
In project/urls.py I defined the url routing like:
urlpatterns = [url(r'^api/', include('api.urls', namespace='api')), url(r'^api-token-auth/', views.obtain_token),]
on the drf web page, it gives me api/api-token-auth as the endpoint but it should be api-token-auth/. Hope this issue can be quickly fixed. thanks!
The text was updated successfully, but these errors were encountered:
i have had a similar issue, check my PR #107 it should fix the problem.
Sorry, something went wrong.
No branches or pull requests
my drf project layout:
project:
- urls.py
api:
In project/urls.py I defined the url routing like:
urlpatterns = [url(r'^api/', include('api.urls', namespace='api')),
url(r'^api-token-auth/', views.obtain_token),]
on the drf web page, it gives me api/api-token-auth as the endpoint but it should be api-token-auth/. Hope this issue can be quickly fixed. thanks!
The text was updated successfully, but these errors were encountered: