From 37a5818eb76ad75055807d300d1cdd6fb5821b0a Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 1 Jun 2020 16:32:03 +0100 Subject: engagement events now appear on org page --- ctrack/core/utils.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'ctrack/core') diff --git a/ctrack/core/utils.py b/ctrack/core/utils.py index fb49235..0612c52 100644 --- a/ctrack/core/utils.py +++ b/ctrack/core/utils.py @@ -197,6 +197,11 @@ def populate_db(**kwargs): etf3 = EngagementTypeFactory( descriptor="CAF - Initial Submission", enforcement_instrument=False ) + etf4 = EngagementTypeFactory(descriptor="Phone Call", enforcement_instrument=False) + etf5 = EngagementTypeFactory( + descriptor="Video Conference", enforcement_instrument=False + ) + etf6 = EngagementTypeFactory(descriptor="Email", enforcement_instrument=False) EngagementEventFactory.create(type=etf1, user=user, participants=[p1, p2]) EngagementEventFactory.create(type=etf2, user=user, participants=[p3]) -- cgit v1.2.3