hex337 / quantum-attendance

An attendance program for Quantum Martial Arts
MIT License
3 stars 2 forks source link

Refactor the attendance redux store #24

Closed hex337 closed 7 years ago

hex337 commented 7 years ago

Right now we have two top level things in the store, $$students and $$classes. In preparation for these accessing each other, I want to move to having a single top level $$attendance that stores all of the objects. It should look like:

$$attendance: {
  classes: {
  },
  students: {
  },
  belts: {
  },
  class_types: {
  },
  classes_students: {
  }
}