|
|
@ -72,7 +72,7 @@ func FindChapterID(id string) (Chapter, error) { |
|
|
|
// ListChapterStoryID lists all chapters for the story ID
|
|
|
|
func ListChapterStoryID(storyID string) ([]Chapter, error) { |
|
|
|
chapters := make([]Chapter, 0, 8) |
|
|
|
err := chapterCollection.Find(bson.M{"storyId": storyID}).Sort("createdDate").One(&chapters) |
|
|
|
err := chapterCollection.Find(bson.M{"storyId": storyID}).Sort("createdDate").All(&chapters) |
|
|
|
if err != nil { |
|
|
|
return nil, err |
|
|
|
} |
|
|
|