public async Task <ActionResult> Setup()
        {
            string  email = this.GetCurrentUserEmail();
            BoxUser user  = await BoxHelper.CreateBoxUser(email);

            BoxClient userClient = BoxHelper.UserClient(user.Id);
            await BoxHelper.Setup(userClient);

            return(RedirectToAction("index", "home"));
        }