We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b263998 commit a784794Copy full SHA for a784794
1 file changed
ietf/liaisons/sitemaps.py
@@ -1,8 +1,12 @@
1
# Copyright The IETF Trust 2007, All Rights Reserved
2
#
3
from django.contrib.sitemaps import Sitemap
4
+from django.conf import settings
5
from ietf.liaisons.models import LiaisonDetail
6
7
+if settings.USE_DB_REDESIGN_PROXY_CLASSES:
8
+ from ietf.liaisons.proxy import LiaisonDetailProxy as LiaisonDetail
9
+
10
class LiaisonMap(Sitemap):
11
changefreq = "never"
12
def items(self):
0 commit comments