removeAvatarHashBan abstract method

  1. @POST.new('/admin/bans/avatar-hash/remove')
Future<void> removeAvatarHashBan({
  1. @Body.new() required CheckAvatarHashRequest body,
})

Remove avatar hash ban.

Lift a previously applied avatar-hash ban.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/avatar-hash/remove')
Future<void> removeAvatarHashBan({
  @Body() required CheckAvatarHashRequest body,
});