public async Task <IActionResult> Revert(Guid id)
    {
        await _service.RevertModActionAsync(id);

        return(StatusCode(205));
    }