removeProfileSubstringBan abstract method

  1. @POST.new('/admin/bans/profile-substring/remove')
Future<void> removeProfileSubstringBan({
  1. @Body.new() required BanProfileSubstringRequest body,
})

Remove profile-substring ban.

Lift a previously applied profile-substring ban.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/profile-substring/remove')
Future<void> removeProfileSubstringBan({
  @Body() required BanProfileSubstringRequest body,
});