This repository was archived by the owner on Mar 20, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
projecttemplates/MvcRelyingParty/Controllers
samples/OAuthAuthorizationServer/Controllers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020 using RelyingPartyLogic ;
2121
2222 [ HandleError ]
23- public class AccountController : AsyncController {
23+ public class AccountController : Controller {
2424 [ Authorize ]
2525 public ActionResult Edit ( ) {
2626 return View ( GetAccountInfoModel ( ) ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ namespace MvcRelyingParty.Controllers {
1717 using DotNetOpenAuth . OpenId . RelyingParty ;
1818 using RelyingPartyLogic ;
1919
20- public class AuthController : AsyncController {
20+ public class AuthController : Controller {
2121 /// <summary>
2222 /// Initializes a new instance of the <see cref="AuthController"/> class.
2323 /// </summary>
Original file line number Diff line number Diff line change 1111 using OAuthAuthorizationServer . Models ;
1212
1313 [ HandleError ]
14- public class AccountController : AsyncController {
14+ public class AccountController : Controller {
1515 // **************************************
1616 // URL: /Account/LogOn
1717 // **************************************
Original file line number Diff line number Diff line change 1212 using OAuthAuthorizationServer . Code ;
1313 using OAuthAuthorizationServer . Models ;
1414
15- public class OAuthController : AsyncController {
15+ public class OAuthController : Controller {
1616 private readonly AuthorizationServer authorizationServer = new AuthorizationServer ( new OAuth2AuthorizationServer ( ) ) ;
1717
1818 /// <summary>
You can’t perform that action at this time.
0 commit comments