Skip to content

Sample State

Jacky Chen edited this page Dec 6, 2021 · 2 revisions
{
  entities: {
    questions: {
      1: {
        id: 1,
        body: "Should I quit my job?",
        responses: ['yes', 'no', 'yes', ...],
        remaining_time: 200000,
        user_id: 81
      }
    },
    users: {
      7: {
        id: 7,
        email: "guest@gmail.com"
      },
      27: {
        id: 27,
        email: "james@gmail.com"
      }
    }
  },
  errors: {
    sessionErrors: ['Incorrect username/password combination'],
    postErrors: ['Question needs to be between 15 and 100 characters']
  },
  session: { isAuthenticated: true, user: { id: 7, email: '[email protected]', ... } }
}
Clone this wiki locally