From 648f6ffcd700de4990957c84000484f066b9edb2 Mon Sep 17 00:00:00 2001 From: Yash Saini Date: Tue, 23 Jun 2020 12:19:51 +0200 Subject: [PATCH] [3.1.x] Refs #31541 -- Added example of creating Redirect objects to redirects app docs. Backport of a8c0246ece0716cea2ea6c1b313d4d93a10ee333 from master --- docs/ref/contrib/redirects.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/ref/contrib/redirects.txt b/docs/ref/contrib/redirects.txt index 6fa5fc51eb4..45b7fe1a0e8 100644 --- a/docs/ref/contrib/redirects.txt +++ b/docs/ref/contrib/redirects.txt @@ -74,6 +74,24 @@ Via the Python API Redirects are represented by a standard :doc:`Django model `, which lives in :source:`django/contrib/redirects/models.py`. You can access redirect objects via the :doc:`Django database API `. + For example:: + + >>> from django.conf import settings + >>> from django.contrib.redirects.models import Redirect + >>> # Add a new redirect. + >>> redirect = Redirect.objects.create( + ... site_id=1, + ... old_path='/contact-us/', + ... new_path='/contact/', + ... ) + >>> # Change a redirect. + >>> redirect.new_path = '/contact-details/' + >>> redirect.save() + >>> redirect + /contact-details/> + >>> # Delete a redirect. + >>> Redirect.objects.filter(site_id=1, old_path='/contact-us/').delete() + (1, {'redirects.Redirect': 1}) Middleware ==========