]> Untitled Git - lemmy.git/blobdiff - crates/db_schema/src/traits.rs
Implement federated user following (fixes #752) (#2577)
[lemmy.git] / crates / db_schema / src / traits.rs
index 75cfcd50693f35f164daf69903c5549c0a7bab3f..2055ab644b1fd1eab4c62cd9dfebae5a3c9a8d44 100644 (file)
@@ -44,7 +44,6 @@ pub trait Followable {
   async fn unfollow(pool: &DbPool, form: &Self::Form) -> Result<usize, Error>
   where
     Self: Sized;
-  async fn has_local_followers(pool: &DbPool, community_id: CommunityId) -> Result<bool, Error>;
 }
 
 #[async_trait]