OpenAuth.Net/OpenAuth.WebApi/Areas/SSO/Controllers/PassportController.cs
2016-07-08 11:28:38 +08:00

18 lines
423 B
C#

using System.Web.Http;
using OpenAuth.WebApi.Areas.SSO.Models.Services;
namespace OpenAuth.WebApi.Areas.SSO.Controllers
{
public class PassportController : ApiController
{
public bool Get(string token = "", string requestid = "")
{
if (new UserAuthSessionService().GetCache(token))
{
return true;
}
return false;
}
}
}