public IActionResult Index()
        {
            var userId     = GetCurrentUserAsync().Result.Id;
            var customPage = _adminCustomRepository.GetSystemDefaultPage(userId);

            return(Redirect(customPage.Value == "" ? "/Admin/Welcome" : customPage.Value));
        }