refactor: remove unused param
This commit is contained in:
parent
1f3aaca3cf
commit
71e8eca5f4
@ -1,5 +1,4 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Mirea.Api.Security.Common.Interfaces;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Mirea.Api.Endpoint.Configuration.Core.Middleware;
|
||||
@ -7,7 +6,7 @@ namespace Mirea.Api.Endpoint.Configuration.Core.Middleware;
|
||||
public class CookieAuthorizationMiddleware(RequestDelegate next)
|
||||
{
|
||||
public const string JwtAuthorizationName = "_ajwt";
|
||||
public async Task InvokeAsync(HttpContext context, IRevokedToken revokedTokenStore)
|
||||
public async Task InvokeAsync(HttpContext context)
|
||||
{
|
||||
if (context.Request.Cookies.ContainsKey(JwtAuthorizationName))
|
||||
context.Request.Headers.Authorization = "Bearer " + context.Request.Cookies[JwtAuthorizationName];
|
||||
|
Loading…
Reference in New Issue
Block a user