addStory returns instance of Story

main
anela 2 years ago
parent 40f5f1b48a
commit 813ead675a

@ -96,18 +96,19 @@ class StoryList {
); );
console.log("the response is : ", response); console.log("the response is : ", response);
this.storyId = storyId; // this.storyId = storyId;
this.title = title; // this.title = title;
this.author = author; // this.author = author;
this.url = url; // this.url = url;
this.username = username; // this.username = username;
this.createdAt = createdAt; // this.createdAt = createdAt;
let returnObj = { // let returnObj = {
${response.data.} // ${response.data.}
}; // };
return response; return new Story(response.data.story);
} }
} }

Loading…
Cancel
Save