/**
 * Info needed for an Occurrence that is only taking attendance.
 * @author Benedikt Arnarsson
 */
type OccurrenceAttendanceOnlyInfo = {
  // Flag indicating that the live-grouper algorithm is not enabled
  grouperEnabled: false,
};

export default OccurrenceAttendanceOnlyInfo;
