UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

20 lines (19 loc) 453 B
/** * Information needed to log attendance. * @author Benedikt Arnarsson * @author Gabe Abrams */ type AttendanceEntry = { userId: number; userFirstName: string; userLastName: string; courseId: number; ihid: string; method: 'in-person' | 'live' | 'async' | 'excused'; groupNum?: number; isLearner?: boolean; isAdmin?: boolean; isHost?: boolean; eventTimestamp?: number; }; export default AttendanceEntry;