14 lines
450 B
C#
14 lines
450 B
C#
using MediatR.Behaviors.Authorization;
|
|
using MediatR.Behaviors.Authorization.Interfaces;
|
|
using ExpenseTracker.Application.Common.Exceptions;
|
|
|
|
namespace ExpenseTracker.Application.Common.Authorization;
|
|
|
|
public class CustomUnauthorizedResultHandler : IUnauthorizedResultHandler
|
|
{
|
|
public Task<TResponse> Invoke<TResponse>(AuthorizationResult result)
|
|
{
|
|
throw new ForbiddenException(result.FailureMessage);
|
|
}
|
|
}
|