We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d84a008 commit e164458Copy full SHA for e164458
interface/views/__init__.py
@@ -68,7 +68,7 @@ def indexpage(request):
68
# URL: /clear/<dname>
69
def clear(request, dname):
70
url = dname.lower()
71
- if url in settings.CACHE_RESET_WHITELIST:
+ if url in settings.CACHE_RESET_ALLOWLIST:
72
for test in [
73
"dnssec",
74
"mail_auth",
internetnl/settings-dist.py
@@ -243,7 +243,7 @@
243
CACHE_TTL = 200
244
CACHE_WHOIS_TTL = 60 * 60 * 24
245
# Specify domain names for which the cache may be reset through /clear/<dname>
246
-CACHE_RESET_WHITELIST = []
+CACHE_RESET_ALLOWLIST = []
247
248
# --- Language settings
249
#
0 commit comments