summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-01-27 17:47:15 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-01-27 17:47:15 -0800
commit23f06825f7280261f599beedd977c83afe9a47c8 (patch)
tree614da0fd536c712ee77fd84166ca22429fd23d00
parent58ce2d23b8594eb85617668b28492d6d14503aa8 (diff)
downloadDotNetOpenAuth-23f06825f7280261f599beedd977c83afe9a47c8.zip
DotNetOpenAuth-23f06825f7280261f599beedd977c83afe9a47c8.tar.gz
DotNetOpenAuth-23f06825f7280261f599beedd977c83afe9a47c8.tar.bz2
Removed references to obsolete AsyncController.
-rw-r--r--projecttemplates/MvcRelyingParty/Controllers/AccountController.cs2
-rw-r--r--projecttemplates/MvcRelyingParty/Controllers/AuthController.cs2
-rw-r--r--samples/OAuthAuthorizationServer/Controllers/AccountController.cs2
-rw-r--r--samples/OAuthAuthorizationServer/Controllers/OAuthController.cs2
4 files changed, 4 insertions, 4 deletions
diff --git a/projecttemplates/MvcRelyingParty/Controllers/AccountController.cs b/projecttemplates/MvcRelyingParty/Controllers/AccountController.cs
index 650b861..e95c22a 100644
--- a/projecttemplates/MvcRelyingParty/Controllers/AccountController.cs
+++ b/projecttemplates/MvcRelyingParty/Controllers/AccountController.cs
@@ -20,7 +20,7 @@
using RelyingPartyLogic;
[HandleError]
- public class AccountController : AsyncController {
+ public class AccountController : Controller {
[Authorize]
public ActionResult Edit() {
return View(GetAccountInfoModel());
diff --git a/projecttemplates/MvcRelyingParty/Controllers/AuthController.cs b/projecttemplates/MvcRelyingParty/Controllers/AuthController.cs
index 5ad391f..1d9dadf 100644
--- a/projecttemplates/MvcRelyingParty/Controllers/AuthController.cs
+++ b/projecttemplates/MvcRelyingParty/Controllers/AuthController.cs
@@ -17,7 +17,7 @@ namespace MvcRelyingParty.Controllers {
using DotNetOpenAuth.OpenId.RelyingParty;
using RelyingPartyLogic;
- public class AuthController : AsyncController {
+ public class AuthController : Controller {
/// <summary>
/// Initializes a new instance of the <see cref="AuthController"/> class.
/// </summary>
diff --git a/samples/OAuthAuthorizationServer/Controllers/AccountController.cs b/samples/OAuthAuthorizationServer/Controllers/AccountController.cs
index fe9c7fb..336f9bd 100644
--- a/samples/OAuthAuthorizationServer/Controllers/AccountController.cs
+++ b/samples/OAuthAuthorizationServer/Controllers/AccountController.cs
@@ -11,7 +11,7 @@
using OAuthAuthorizationServer.Models;
[HandleError]
- public class AccountController : AsyncController {
+ public class AccountController : Controller {
// **************************************
// URL: /Account/LogOn
// **************************************
diff --git a/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs b/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs
index 6ba2b38..3ab4096 100644
--- a/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs
+++ b/samples/OAuthAuthorizationServer/Controllers/OAuthController.cs
@@ -12,7 +12,7 @@
using OAuthAuthorizationServer.Code;
using OAuthAuthorizationServer.Models;
- public class OAuthController : AsyncController {
+ public class OAuthController : Controller {
private readonly AuthorizationServer authorizationServer = new AuthorizationServer(new OAuth2AuthorizationServer());
/// <summary>