public async Task <IActionResult> SetUpUnFollow(int userId, int id)
        {
            if (!AuthorizeUser(userId))
            {
                return(Unauthorized());
            }

            try
            {
                await Task.Run(() => _followerService.SetUpUnfollower(userId, id));

                return(Ok());
            }
            catch (EntityNotFoundException)
            {
                return(BadRequest("Can't unfollow that user"));
            }
        }