Fix follow activity insertion, impl undo follow
Some checks failed
/ docker (push) Failing after 2m59s

- Follow created a new id instead of using the Id of the activity for
  the db activity
This commit is contained in:
Melody Becker 2025-05-08 13:03:49 +02:00
parent d84a693b22
commit e1051e81ac
3 changed files with 225 additions and 133 deletions

View file

@ -9,5 +9,5 @@ type UserToUserRelation struct {
UserId string
TargetUser User // The user Y described in [RelationType]
TargetUserId string
Relation string `gorm:"type:relation_type"`
Relation string // `gorm:"type:relation_type"`
}