From 160996bd4c41ffb1f33c787a421b07f332ca9176 Mon Sep 17 00:00:00 2001 From: Matthew Mikolay Date: Thu, 15 Jun 2023 17:37:58 -0400 Subject: [PATCH] Remove mention of sites framework from docs From what I can tell, Django's sites framework is no longer required now that #150 has been merged. So, the references to the sites framework in the installation docs can be removed. It's worth noting that django-allauth still requires the sites framework, but django-allauth's own docs already mention this. --- docs/installation.rst | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index 665d7a3..95b4e19 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -17,13 +17,12 @@ Installation python -m pip install django-invitations -2. Add "django.contrib.sites" and "invitations" to INSTALLED_APPS +2. Add "invitations" to INSTALLED_APPS .. code-block:: python INSTALLED_APPS = [ ... - "django.contrib.sites", "invitations", ... ] @@ -32,15 +31,6 @@ Installation For allauth support ``invitations`` must come after ``allauth`` in the INSTALLED_APPS - -3. Make sure you have SITE_ID defined in settings: - - .. code-block:: python - - ... - SITE_ID = 1 - ... - 3. Add invitations urls to your urlpatterns: .. code-block:: python