🐛 Bug fixes of edit comment

 Comments now supports attachment!
This commit is contained in:
LittleSheep 2024-05-01 11:16:23 +08:00
parent 82a6c6dd31
commit 1181b1e5ce
3 changed files with 18 additions and 15 deletions

View File

@ -7,6 +7,7 @@ type Comment struct {
Hashtags []Tag `json:"tags" gorm:"many2many:comment_tags"`
Categories []Category `json:"categories" gorm:"many2many:comment_categories"`
Reactions []Reaction `json:"reactions"`
Attachments []Attachment `json:"attachments"`
ReplyID *uint `json:"reply_id"`
ReplyTo *Comment `json:"reply_to" gorm:"foreignKey:ReplyID"`

View File

@ -61,6 +61,7 @@ func createComment(c *fiber.Ctx) error {
PublishedAt *time.Time `json:"published_at" form:"published_at"`
Hashtags []models.Tag `json:"hashtags" form:"hashtags"`
Categories []models.Category `json:"categories" form:"categories"`
Attachments []models.Attachment `json:"attachments" form:"attachments"`
ReplyTo uint `json:"reply_to" form:"reply_to"`
}
@ -76,6 +77,7 @@ func createComment(c *fiber.Ctx) error {
},
Hashtags: data.Hashtags,
Categories: data.Categories,
Attachments: data.Attachments,
Content: data.Content,
}

View File

@ -100,7 +100,7 @@ func editMoment(c *fiber.Ctx) error {
return err
}
var item *models.Moment
var item *models.Comment
if err := database.C.Where(models.Comment{
PostBase: models.PostBase{
BaseModel: models.BaseModel{ID: uint(id)},