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.
17 lines
469 B
17 lines
469 B
2 years ago
|
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);
|
||
|
}
|
||
|
}
|