removeEmailBan abstract method

  1. @POST.new('/admin/bans/email/remove')
Future<void> removeEmailBan({
  1. @Body.new() required BanEmailRequest body,
})

Remove email ban.

Lift a previously applied email ban, allowing the address to be used for new registrations. Used for appeals or error correction.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/email/remove')
Future<void> removeEmailBan({@Body() required BanEmailRequest body});