autobus-api_old/AutobusApi.Application/Identity/Commands/RevokeRefreshToken/RevokeRefreshTokenCommandHandler.cs
2023-11-15 19:00:34 +02:00

22 lines
650 B
C#

using AutobusApi.Application.Common.Interfaces;
using MediatR;
namespace AutobusApi.Application.Identity.Commands.RevokeRefreshToken;
public class RevokeRefreshTokenCommandHandler : IRequestHandler<RevokeRefreshTokenCommand>
{
private readonly IIdentityService _identityService;
public RevokeRefreshTokenCommandHandler(IIdentityService identityService)
{
_identityService = identityService;
}
public async Task Handle(
RevokeRefreshTokenCommand command,
CancellationToken cancellationToken)
{
await _identityService.RevokeRefreshTokenAsync(command.RefreshToken, cancellationToken);
}
}