feat: add blocks fragment

This commit is contained in:
FineFindus
2023-09-10 21:29:40 +02:00
parent b570c8d946
commit 8929482466
5 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package org.joinmastodon.android.api.requests.accounts;
import com.google.gson.reflect.TypeToken;
import org.joinmastodon.android.api.requests.HeaderPaginationRequest;
import org.joinmastodon.android.model.Account;
public class GetAccountBlocks extends HeaderPaginationRequest<Account>{
public GetAccountBlocks(){
super(HttpMethod.GET, "/blocks", new TypeToken<>(){});
}
}