Made all created by human readable

This commit is contained in:
2025-11-20 10:06:01 -05:00
parent 105b28d9a4
commit aaec72af7e
3 changed files with 36 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ export interface CourseEventDetails {
attendees: CourseAttendee[] | null;
created_by: number | null;
created_by_name: string | null;
course_name: string | null;
}
@@ -80,4 +81,5 @@ export interface CourseEventSummary {
course_name: string;
date: string;
created_by: number;
created_by_name: string;
}