public async Task <IActionResult> GetBans()
        {
            var result = await _userManagementRepository.GetBans();

            var message = string.Empty;

            if (result.Any())
            {
                message = "No bans to display";
            }

            return(new OkObjectResult(new
            {
                Message = message,
                result
            }));
        }