From ec7a5567c07ba2a5a1bf1810b4dd73828aaa9691 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Felix=20Sch=C3=A4fer?= <felix@thegcat.net>
Date: Sun, 23 Jun 2019 01:29:07 +0200
Subject: [PATCH] Actually cache the registrations table

---
 pretix_public_registrations/signals.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pretix_public_registrations/signals.py b/pretix_public_registrations/signals.py
index 7a4d7ca..e19cc17 100644
--- a/pretix_public_registrations/signals.py
+++ b/pretix_public_registrations/signals.py
@@ -51,6 +51,7 @@ def add_public_registrations_table(sender, **kwargs):
             'headers': headers,
             'public_registrations': public_registrations
         })
+        sender.cache.set('public_registrations_table_' + get_language(), cached)
     return cached
 
 
-- 
GitLab