Hide posts when muting, blocking or unfollowing an account

This commit is contained in:
Grishka
2022-11-26 23:09:46 +03:00
parent 0e635aec23
commit e4c9eb089a
7 changed files with 118 additions and 18 deletions

View File

@@ -0,0 +1,13 @@
package org.joinmastodon.android.events;
public class RemoveAccountPostsEvent{
public final String accountID;
public final String postsByAccountID;
public final boolean isUnfollow;
public RemoveAccountPostsEvent(String accountID, String postsByAccountID, boolean isUnfollow){
this.accountID=accountID;
this.postsByAccountID=postsByAccountID;
this.isUnfollow=isUnfollow;
}
}