Sample State - rd-tran/Bulletin GitHub Wiki

{
  entities: {
    users: {
      ryan.tran: {
        id: 1,
        fname: 'Ryan',
        lname: 'Tran',
        username: 'ryan.tran',
        email: '[email protected]',
        birthday: 09/12/1994,
        gender: 'Male',
        bio: 'Hey guys, I created Bulletin! AMA on my bulletin board!',
        workplace: 'Bulletin',
        education: 'UCSD',
        hometown: 'Sunnyvale, CA',
        relationship_status_id: '',
        name_pronunciation: '',
        website: 'https://github.com/rd-tran',
      },
      mochi.boy: {
        id: 2,
        fname: 'Mochi',
        lname: 'Boy',
        username: 'mochi.boy',
      },
      mark.zuckerberg: {
        id: 4,
        fname: 'Mark',
        lname: 'Zuckerberg',
        username: 'mark.zuckerberg',
      }
    },
    posts: {
      1: {
        id: 1,
        authorId: 1,
        userId: 1,
        body: 'Testing testing. First attempt at making a Bulletin post!',
        createdAt: 'Wed Jun 27 2020 at 2:04 PM'
      },
      2: {
        id: 2,
        authorId: 4,
        userId: 1,
        body: 'The website is starting to come together, keep it up!',
        createdAt: 'Wed Jun 30 2020 at 9:57 PM'
      }
    },
    comments: {
      1: {
        id: 1,
        userId: 1,
        postId: 1,
        body: 'Testing comments now!',
        parentId: undefined,
        createdAt: 'Wed Jun 27 2020 at 8:24 PM'
      }
    },
    friendRequests: {
      1: {
        requesterId: 3,
        requesteeId: 1
      }
    }
    friends: {
      1: {
        frienderId: 1,
        friendedId: 2
      },
      2: {
        frienderId: 2,
        friendedId: 1
      },
    }
  },
  modal: { inclusion: { in: [create, edit] },
  errors: {
    session: [
      "The email you've entered doesn't match any account.",
      "The password you’ve entered is incorrect."
    ]
  },
  session: {
    id: 1, fname: 'Ryan', lname: 'Tran', username: 'ryan.tran'
  }
}