removeUrlBan abstract method

  1. @POST.new('/admin/bans/url/remove')
Future<void> removeUrlBan({
  1. @Body.new() required UnbanUrlRequest body,
})

Remove URL ban.

Lift a previously applied URL ban, allowing the URL to be posted again.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/url/remove')
Future<void> removeUrlBan({@Body() required UnbanUrlRequest body});