Notify to followers when their following account posted

This commit is contained in:
2024-02-12 17:24:17 +08:00
parent c5ed5e8df6
commit 4690e8be10
2 changed files with 23 additions and 0 deletions

View File

@ -27,6 +27,8 @@ type AccountMembership struct {
ID uint `json:"id" gorm:"primaryKey"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Follower Account `json:"follower"`
Following Account `json:"following"`
FollowerID uint
FollowingID uint
}