From 136108c68262da639cac54cda39c286f9dac8a4f Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Tue, 10 Mar 2020 21:00:46 +0000 Subject: implemented basic database cache --- ctrack/caf/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ctrack') diff --git a/ctrack/caf/urls.py b/ctrack/caf/urls.py index 3016013..dc228ae 100644 --- a/ctrack/caf/urls.py +++ b/ctrack/caf/urls.py @@ -1,4 +1,5 @@ from django.urls import path +from django.views.decorators.cache import cache_page from ctrack.caf.views import CreateCAF, ListCAF, ListApplicableSystem, DetailCAF @@ -7,6 +8,6 @@ app_name = "caf" urlpatterns = [ path("", view=CreateCAF.as_view(), name="create"), path("", view=ListCAF.as_view(), name="caf_list"), - path("applicablesystems", view=ListApplicableSystem.as_view(), name="es_list"), + path("applicablesystems", cache_page(60 * 60)(ListApplicableSystem.as_view()), name="es_list"), path("", DetailCAF.as_view(), name="detail") ] -- cgit v1.2.3