public IActionResult DeleteFollowers(string userId)
        {
            var whoSignedUpId = User.FindFirstValue(ClaimTypes.NameIdentifier);

            _subscriptionsRepository.DeleteFollowers(userId);
            return(LocalRedirect($"~/subscriptions/all?userId={whoSignedUpId}"));
        }