public ActionResult Logout()
        {
            McAuthHttpClient.Revoke(User.Identity.Name);

            FormsAuthentication.SignOut();

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