aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-06-01 16:32:03 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-06-01 16:32:03 +0100
commit37a5818eb76ad75055807d300d1cdd6fb5821b0a (patch)
tree4f2d842cce767c3aad6c5d6bf4a0e7e809138d13 /ctrack/core
parentb58ec416d86fc8a4c7816fe96d2b1030deff37a5 (diff)
engagement events now appear on org page
Diffstat (limited to 'ctrack/core')
-rw-r--r--ctrack/core/utils.py5
1 files changed, 5 insertions, 0 deletions
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])