From e07692275affac73c4d3f244f5e2b1b6be415410 Mon Sep 17 00:00:00 2001 From: tsmethurst Date: Sun, 28 Mar 2021 18:47:19 +0200 Subject: [PATCH] add notify --- internal/db/model/follow.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/db/model/follow.go b/internal/db/model/follow.go index b47da83..36e19e7 100644 --- a/internal/db/model/follow.go +++ b/internal/db/model/follow.go @@ -36,4 +36,6 @@ type Follow struct { ShowReblogs bool `pg:"default:true"` // What is the activitypub URI of this follow? URI string `pg:",unique"` + // does the following account want to be notified when the followed account posts? + Notify bool }