summaryrefslogtreecommitdiffstats
path: root/server/src/apub/community.rs
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-05-03 22:41:45 -0400
committerDessalines <tyhou13@gmx.com>2020-05-03 22:41:45 -0400
commitb8b2398d32908c982635070ce1ce58eee504dc1d (patch)
treecff63e37ab00d71bc43e3c998b1345a308af4ff9 /server/src/apub/community.rs
parentfab22e3d8a44ecfd4ccb5a8762ea16845b1b4e1b (diff)
Adding undo follow community.
Diffstat (limited to 'server/src/apub/community.rs')
-rw-r--r--server/src/apub/community.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/server/src/apub/community.rs b/server/src/apub/community.rs
index a05d1ce0..feffa70e 100644
--- a/server/src/apub/community.rs
+++ b/server/src/apub/community.rs
@@ -289,6 +289,14 @@ impl ActorType for Community {
.collect(),
)
}
+
+ fn send_follow(&self, _follow_actor_id: &str, _conn: &PgConnection) -> Result<(), Error> {
+ unimplemented!()
+ }
+
+ fn send_unfollow(&self, _follow_actor_id: &str, _conn: &PgConnection) -> Result<(), Error> {
+ unimplemented!()
+ }
}
impl FromApub for CommunityForm {