mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
18 lines
423 B
C#
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;
|
|
}
|
|
}
|
|
} |