public async Task <IActionResult> GetAditLogsAsync(int teamId = 0, CancellationToken ct = default)
 {
     if (!AuthenticationUtilities.IsAllowedFeed(User))
     {
         return(BadRequest("User has been banned from Feed"));
     }
     return(Ok(await _feedService.GetAllAditLogsAsync(teamId, ct)));
 }