diff --git a/pkg/models/post.go b/pkg/models/post.go index 7d3f450..d272387 100644 --- a/pkg/models/post.go +++ b/pkg/models/post.go @@ -4,9 +4,9 @@ package models type Post struct { BaseModel[AnthrovePostID] Rating Rating `json:"rating" gorm:"type:enum('safe','questionable','explicit')"` - Tags []Tag `json:"tags" gorm:"many2many:post_tags;"` + Tags []Tag `json:"-" gorm:"many2many:post_tags;"` Favorites []UserFavorites `json:"-" gorm:"foreignKey:PostID"` - References []PostReference `json:"-" gorm:"foreignKey:PostID"` + References []PostReference `json:"references" gorm:"foreignKey:PostID"` } func (Post) TableName() string {