summaryrefslogtreecommitdiffstats
path: root/database/postgres/comments.go
blob: b4feec0aab471db72e9cf0e668b02d850e256bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package postgres

import (
	"github.com/NyaaPantsu/nyaa/common"
	"github.com/NyaaPantsu/nyaa/model"
)

func (db *Database) InsertComment(comment *model.Comment) (err error) {
	_, err = db.getPrepared(queryInsertComment).Exec(comment.ID, comment.TorrentID, comment.Content, comment.CreatedAt)
	return
}

func (db *Database) GetCommentsWhere(param *common.CommentParam) (comments []model.Comment, err error) {

	return
}

func (db *Database) DeleteCommentsWhere(param *common.CommentParam) (deleted uint32, err error) {

	return
}