classlib/ExpenseTracker.Application/Authentication/Commands/RenewAccessTokenWithBody/RenewAccessTokenWithBodyCommandHandler.cs
2024-08-07 21:12:02 +03:00

20 lines
759 B
C#

using ExpenseTracker.Application.Common.Interfaces.Services;
using MediatR;
namespace ExpenseTracker.Application.Authentication.Commands.RenewAccessTokenWithBody;
public class RenewAccessTokenWithBodyCommandHandler : IRequestHandler<RenewAccessTokenWithBodyCommand, TokensModel>
{
private readonly IAuthenticationService _authenticationService;
public RenewAccessTokenWithBodyCommandHandler(IAuthenticationService authenticationService)
{
_authenticationService = authenticationService;
}
public async Task<TokensModel> Handle(RenewAccessTokenWithBodyCommand request, CancellationToken cancellationToken)
{
return await _authenticationService.RenewAccessTokenAsync(request.RefreshToken, cancellationToken);
}
}