Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

doubledutch/magic-hour

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Magic Hour

Data Model

Firebase Database

public/admin

{
  "slotCount": 12,
  "topics": "Default topic 1\nDefault topic 2\n..."
}

public/all

{
  "meetings": {
    "KEY": {
      "a": "ATTENDEE_A_ID",
      "b": "ATTENDEE_B_ID",
      "slotIndex": 3,
      "topic": "Specific topic selected by one of the attendees"
    }
  }
}

public/users

{
  "USER_ID": {
    "firstName": "Bob",
    "ETC": "...",
    "topic": "What is the meaning of life?"
  }
}