aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/model/comment.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/model/comment.go')
-rw-r--r--cmd/web/model/comment.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/cmd/web/model/comment.go b/cmd/web/model/comment.go
new file mode 100644
index 0000000..c979edc
--- /dev/null
+++ b/cmd/web/model/comment.go
@@ -0,0 +1,17 @@
+package model
+
+import "gorm.io/gorm"
+
+type Comment struct {
+ gorm.Model
+ Article Article `validate:"-"`
+ ArticleID uint
+ User User `validate:"-"`
+ UserID uint
+ Body string `validate:"required"`
+}
+
+func (Comment Comment) GetFormattedCreatedAt() string {
+ dateLayout := "Jan 02, 2006"
+ return Comment.CreatedAt.Format(dateLayout)
+}