예제 #1
0
 private LoginInfo CreateLoginInfo(string returnUrl = null)
 {
     return(new LoginInfo
     {
         ReturnUrl = returnUrl,
         LoginButtons = _fedAuthLoginRepository.GetAll()
     });
 }
예제 #2
0
        public ActionResult FedAuth()
        {
            var model = new FedAuthLoginInfo
            {
                LoginButtons = _fedAuthLoginRepository.GetAll()
            };

            return(View(model));
        }