Camera Information System
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using Furion.Authorization;
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace Cis.Web.Core;
|
|
|
|
|
|
|
|
public class JwtHandler : AppAuthorizeHandler
|
|
|
|
{
|
|
|
|
public override Task<bool> PipelineAsync(AuthorizationHandlerContext context, DefaultHttpContext httpContext)
|
|
|
|
{
|
|
|
|
// 这里写您的授权判断逻辑,授权通过返回 true,否则返回 false
|
|
|
|
|
|
|
|
return Task.FromResult(true);
|
|
|
|
}
|
|
|
|
}
|