implement accepting/rejecting follow requests

closes #13
This commit is contained in:
sk
2022-11-12 03:01:59 +01:00
parent 5fa81e6c8a
commit 12fdd70ad0
8 changed files with 189 additions and 46 deletions

View File

@@ -0,0 +1,9 @@
package org.joinmastodon.android.events;
public class NotificationDeletedEvent{
public final String id;
public NotificationDeletedEvent(String id){
this.id=id;
}
}