add possibility to un/lock accounts

This commit is contained in:
Conny Duck 2018-03-27 20:46:53 +02:00
commit 3628b8431d
5 changed files with 42 additions and 5 deletions

View file

@ -142,6 +142,7 @@ public interface MastodonApi {
Call<Account> accountUpdateCredentials(
@Nullable @Part(value="display_name") RequestBody displayName,
@Nullable @Part(value="note") RequestBody note,
@Nullable @Part(value="locked") RequestBody locked,
@Nullable @Part MultipartBody.Part avatar,
@Nullable @Part MultipartBody.Part header);