Skip to content

Commit 81743f4

Browse files
committed
TD-4469 Sets column title to "Enrolled" instead of "Registered"
1 parent c3e63fb commit 81743f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DigitalLearningSolutions.Data/DataServices/ActivityDataService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ int currentRun
151151
da.Answer4,
152152
da.Answer5,
153153
da.Answer6,
154-
al.Registered,
154+
al.Registered AS Enrolled,
155155
al.Completed,
156156
al.Evaluated
157157
FROM Applications AS a INNER JOIN

DigitalLearningSolutions.Data/Models/TrackingSystem/ActivityLogDetail.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class ActivityLogDetail
1717
public string? Answer4 { get; set; }
1818
public string? Answer5 { get; set; }
1919
public string? Answer6 { get; set; }
20-
public bool Registered { get; set; }
20+
public bool Enrolled { get; set; }
2121
public bool Completed { get; set; }
2222
public bool Evaluated { get; set; }
2323
}

0 commit comments

Comments
 (0)