Skip to content

Commit

Permalink
Resolves #11
Browse files Browse the repository at this point in the history
Correcting the `example` app using (your documentation)[https://django-wordpress-api.readthedocs.io/en/latest/integration.html] which details that the `include` here should be for `wordpress_api.urls` (and not ~~`wordpress.urls`~~). See report in issue #11.
  • Loading branch information
kallewesterling authored and jlariza committed Mar 23, 2022
1 parent 856ab95 commit 5c039b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/example/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@

urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'', include('wordpress.urls', namespace='wordpress')),
url(r'', include('wordpress_api.urls', namespace='wordpress')),
]

0 comments on commit 5c039b0

Please sign in to comment.