pinsdorf / MMM-WeeklySchedule

Module for MagicMirror which shows a weekly timetable. Might be helpful for students/teachers/parents to show class schedules, weekly gym courses, sports training sessions, and general weekly recurring events.
MIT License
65 stars 26 forks source link

Allow referencing another day by name to use its lessons #25

Open kolbyjack opened 2 years ago

kolbyjack commented 2 years ago

When having multiple days with the same lessons, instead of retying the array, allow the user to reference another day by name:

config: {
  schedule: {
    timeslots: ["8:00", "9:00"],
    lessons: {
      mon: ["First lesson", "Second Lesson"],
      wed: "mon"
    }
  }
}