22 lines
650 B
C#
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);
|
|
}
|
|
}
|