Skip to content
This repository was archived by the owner on Mar 20, 2019. It is now read-only.

Commit 23f0682

Browse files
committed
Removed references to obsolete AsyncController.
1 parent 58ce2d2 commit 23f0682

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

projecttemplates/MvcRelyingParty/Controllers/AccountController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
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());

projecttemplates/MvcRelyingParty/Controllers/AuthController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

samples/OAuthAuthorizationServer/Controllers/AccountController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using OAuthAuthorizationServer.Models;
1212

1313
[HandleError]
14-
public class AccountController : AsyncController {
14+
public class AccountController : Controller {
1515
// **************************************
1616
// URL: /Account/LogOn
1717
// **************************************

samples/OAuthAuthorizationServer/Controllers/OAuthController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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>

0 commit comments

Comments
 (0)