From 61373aed6c8ba256d0055f704389adaad0eed10e Mon Sep 17 00:00:00 2001 From: satcomjimmy <33491206+satcomjimmy@users.noreply.github.com> Date: Tue, 21 May 2024 20:06:14 -0400 Subject: [PATCH] Update README.rst (#275) * Update README.rst * Update README.rst * Update README.rst * Update README.rst Removed v1 references and expected imports --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index a65f9ee..bb3493e 100644 --- a/README.rst +++ b/README.rst @@ -172,8 +172,8 @@ main application URL conf as well as your chosen invitation backend URLs: urlpatterns = [ ... - url(r'^accounts/', include('organizations.urls')), - url(r'^invitations/', include(invitation_backend().get_urls())), + path('accounts/', include('organizations.urls')), + path('invitations/', include(invitation_backend().get_urls())), ] This is the simplest way of using the library, but it's far from the only