removePhraseBan abstract method

  1. @POST.new('/admin/bans/phrase/remove')
Future<void> removePhraseBan({
  1. @Body.new() required BanPhraseRequest body,
})

Remove phrase ban.

Lift a previously applied phrase ban, allowing messages containing that phrase again.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/phrase/remove')
Future<void> removePhraseBan({@Body() required BanPhraseRequest body});