-
Notifications
You must be signed in to change notification settings - Fork 0
Sample State
j-corp-25 edited this page Jul 20, 2023
·
7 revisions
{
"entities": {
"users": {
"1": {
"id": 1,
"username": "i_like_popeyes_big_Arms",
"imgUrl": "imgurl.jpg"
},
"2": {
"id": 2,
"username": "BossSAUCE2000",
"imgUrl": "imgurl.jpg"
}
},
"videos": {
"1": {
"id": 1,
"title": "My First Video in slow motion",
"description": "like my video pleaseee",
"authorId": 1,
"url": "video.mp4",
"createdAt": "timestamp",
"updatedAt": "timestamp"
},
"2": {
"id": 2,
"title": "i bought bitcoin at 10 dollars back in 2012",
"description": "Im worth 15million dollars",
"authorId": 2,
"url": "video.mp4",
"createdAt": "timestamp",
"updatedAt": "timestamp"
}
},
"comments": {
"1": {
"id": 1,
"body": "you are garbage",
"userId": 2,
"username": "BossSAUCE2000",
"videoId": 1,
"createdAt": "timestamp",
"updatedAt": "timestamp"
}
},
"likes": {
"1": {
"id": 1,
"userId": 1,
"videoId": 2,
"createdAt": "timestamp"
}
},
"dislikes": {
"1": {
"id": 1,
"userId": 2,
"videoId": 1,
"createdAt": "timestamp"
}
},
"subscriptions": {
"1": {
"id": 1,
"subscriberId": 2,
"subscribedToId": 1,
"createdAt": "timestamp",
"updatedAt": "timestamp"
}
}
},
"ui": {
"loading": false,
"modal": false
},
"errors": {
"login": ["Incorrect username/password combination"],
"videoForm": ["Video title cannot be blank"],
["Video description cannot be blank"]
"commentForm": ["Comment cannot be blank"]
},
"session": {
"currentUserId": 2,
"token": "jsondoasndo23813"
}
}