removeFileShaBan abstract method

  1. @POST.new('/admin/bans/file-sha/remove')
Future<void> removeFileShaBan({
  1. @Body.new() required UnbanFileShaRequest body,
})

Remove file SHA ban.

Lift a previously applied file SHA ban, allowing uploads of that file again.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/bans/file-sha/remove')
Future<void> removeFileShaBan({@Body() required UnbanFileShaRequest body});