aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-02 10:29:22 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-02 10:29:22 +0100
commitb5635e276781810dc6ae0a608c64a00e4a951cbb (patch)
tree6c5de6ca3a1aac2ba6f56cfffd07fe5efdd3409a /ctrack/core
parentc3fd7a10d270d408b7661501c3c3023d602f7054 (diff)
tidying
Diffstat (limited to '')
-rw-r--r--ctrack/core/utils.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/ctrack/core/utils.py b/ctrack/core/utils.py
index 3c54245..e239120 100644
--- a/ctrack/core/utils.py
+++ b/ctrack/core/utils.py
@@ -201,8 +201,8 @@ def populate_db(**kwargs):
)
inspector_user.groups.add(cct_staff_group)
- etf1 = EngagementTypeFactory(descriptor="Information Notice")
- etf2 = EngagementTypeFactory(descriptor="Designation Letter")
+ etf1 = EngagementTypeFactory(descriptor="Information Notice", enforcement_instrument=True)
+ etf2 = EngagementTypeFactory(descriptor="Designation Letter", enforcement_instrument=True)
etf3 = EngagementTypeFactory(
descriptor="CAF - Initial Submission", enforcement_instrument=False
)
@@ -211,6 +211,9 @@ def populate_db(**kwargs):
descriptor="Video Conference", enforcement_instrument=False
)
etf6 = EngagementTypeFactory(descriptor="Email", enforcement_instrument=False)
+ etf7 = EngagementTypeFactory(descriptor="CAF - Initial Review Complete", enforcement_instrument=False)
+ etf8 = EngagementTypeFactory(descriptor="CAF - Peer Review")
+ EngagementTypeFactory(descriptor="CAF = Validation Complete")
EngagementEventFactory.create(type=etf1, user=user, participants=[p1, p2])
EngagementEventFactory.create(type=etf2, user=user, participants=[p3])