diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-23 09:01:13 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-04-23 09:01:13 -0700 |
commit | a46f18685f6ab0b843a9de63bf0172ad22808033 (patch) | |
tree | 08dfd9ee709549327c108fa4883182725777a7dc /samples/OpenIdProviderMvc/Controllers/HomeController.cs | |
parent | 7323ea7a7b17e6fc0c6636f4c5784d5bfe2179e9 (diff) | |
download | DotNetOpenAuth-a46f18685f6ab0b843a9de63bf0172ad22808033.zip DotNetOpenAuth-a46f18685f6ab0b843a9de63bf0172ad22808033.tar.gz DotNetOpenAuth-a46f18685f6ab0b843a9de63bf0172ad22808033.tar.bz2 |
Shorted anonymous identifier hash length, reworked the OP MVC sample to support both anonymous and identifying identifiers.
Diffstat (limited to 'samples/OpenIdProviderMvc/Controllers/HomeController.cs')
-rw-r--r-- | samples/OpenIdProviderMvc/Controllers/HomeController.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/samples/OpenIdProviderMvc/Controllers/HomeController.cs b/samples/OpenIdProviderMvc/Controllers/HomeController.cs index 5ba08b3..346e838 100644 --- a/samples/OpenIdProviderMvc/Controllers/HomeController.cs +++ b/samples/OpenIdProviderMvc/Controllers/HomeController.cs @@ -23,5 +23,9 @@ public ActionResult Xrds() { return View(); } + + public ActionResult PpidXrds() { + return View(); + } } } |