Skip to content

Latest commit

 

History

History
63 lines (62 loc) · 1.1 KB

File metadata and controls

63 lines (62 loc) · 1.1 KB
{
  session: {
    currentUser: {
      id: 1,
      username: "demo"
    },
    errors: []
  },
  currentVideo: {
    id: 1,
    title: "video1",
    description: "description1",
    video_url: "video_url1",
    views: 1,
    username: "user1",
    created_date: Jan 9, 2017,
    comments: {
      1: {
        id: 1,
        body: "commentbody1",
      }
    }
  }
  videoList: {
    1: {
      id: 4,
      title: "videolisttitle1",
      description: "videolistdescription1",
      views: 3,
      username: "videolistusername1",
      thumbnail: "image_url"
    },
    2: {
      id: 2,
      title: "sampletitle",
      description: "sampledescription",
      views: 2,
      username: "sampleusername",
      thumbnail: "samplethumbnail"
    }
  }
  searchList: {
    1: {
      id: 2,
      title: "searchedvideo2",
      description: "searcheddescription2",
      views: 2
      username: "user2"
      thumbnail: "image_url"
    }
    2: {
      id: 3,
      title: "searchedvideo3",
      description: "searcheddescription3",
      views: 2
      username: "user3"
      thumbnail: "image_url"
    }
  }
}