add notify

This commit is contained in:
tsmethurst 2021-03-28 18:47:19 +02:00
commit e07692275a

View file

@ -36,4 +36,6 @@ type Follow struct {
ShowReblogs bool `pg:"default:true"` ShowReblogs bool `pg:"default:true"`
// What is the activitypub URI of this follow? // What is the activitypub URI of this follow?
URI string `pg:",unique"` URI string `pg:",unique"`
// does the following account want to be notified when the followed account posts?
Notify bool
} }