mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
15 lines
257 B
C#
15 lines
257 B
C#
using System.Web.Mvc;
|
|
using OpenAuth.App.SSO;
|
|
|
|
namespace OpenAuth.WebTest.Controllers
|
|
{
|
|
public class HomeController :Controller
|
|
{
|
|
[SSOAuth]
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
}
|
|
} |