You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
409 B
17 lines
409 B
package comments
|
|
|
|
import (
|
|
"git.aiterp.net/rpdata/api/models"
|
|
"github.com/globalsign/mgo/bson"
|
|
)
|
|
|
|
// Remove removes one comment.
|
|
func Remove(comment models.Comment) error {
|
|
return collection.RemoveId(comment.ID)
|
|
}
|
|
|
|
// RemoveChapter removes all comments for the given chapter.
|
|
func RemoveChapter(chapter models.Chapter) error {
|
|
_, err := collection.RemoveAll(bson.M{"chapterId": chapter.ID})
|
|
return err
|
|
}
|