From 1a5e9d4b91b721b4e6ac23bcafde7d215693327e Mon Sep 17 00:00:00 2001
From: Allen Gilliland <agilliland@gmail.com>
Date: Wed, 9 Sep 2015 22:38:22 -0700
Subject: [PATCH] include a :card-create event in our view logging because
 realistically the user is always looking at the card they are creating.

---
 src/metabase/events/view_log.clj | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/metabase/events/view_log.clj b/src/metabase/events/view_log.clj
index fba866c2965..693ee8a4f81 100644
--- a/src/metabase/events/view_log.clj
+++ b/src/metabase/events/view_log.clj
@@ -8,7 +8,8 @@
 
 (def view-counts-topics
   "The `Set` of event topics which we subscribe to for view counting."
-  #{:card-read
+  #{:card-create
+    :card-read
     :dashboard-read})
 
 (def ^:private view-counts-channel
-- 
GitLab