Add Rejected field to MediaAttachment model

This commit is contained in:
2025-05-13 23:06:51 +03:30
parent 61a48c1cf4
commit a9dc376409

View File

@@ -7,5 +7,6 @@ type MediaAttachment struct {
PreviewUrl string `json:"preview_url"` PreviewUrl string `json:"preview_url"`
RemoteUrl string `json:"remote_url"` RemoteUrl string `json:"remote_url"`
Approved bool `json:"-"` Approved bool `json:"-"`
Rejected bool `json:"-"`
PostID string // Foreign key to Post PostID string // Foreign key to Post
} }