From 95724bc69ef44b98f1175347d30a4c69139b59b9 Mon Sep 17 00:00:00 2001
From: David Schmitz <schmitz@lrz.de>
Date: Thu, 21 Jun 2018 14:24:15 +0000
Subject: [PATCH] fix caching issue with rule details page

---
 flowspec/views.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/flowspec/views.py b/flowspec/views.py
index bad7f378..c5eaa6c8 100644
--- a/flowspec/views.py
+++ b/flowspec/views.py
@@ -819,6 +819,7 @@ def lookupShibAttr(attrmap, requestMeta):
 
 # show the details of specific route
 @login_required
+@never_cache
 def routedetails(request, route_slug):
     route = get_object_or_404(Route, name=route_slug)
     #return render(request, 'flowspy/route_details.html', {'route': route})
-- 
GitLab