Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Routing;
using Nop.Web.Framework.Mvc.Routing;
namespace Nop.Plugin.Payments.PayPalCommerce.Infrastructure;
///
/// Represents plugin route provider
///
public class RouteProvider : IRouteProvider
{
///
/// Register routes
///
/// Route builder
public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder)
{
endpointRouteBuilder.MapControllerRoute(PayPalCommerceDefaults.ConfigurationRouteName,
"Admin/PayPalCommerce/Configure",
new { controller = "PayPalCommerce", action = "Configure" });
endpointRouteBuilder.MapControllerRoute(PayPalCommerceDefaults.WebhookRouteName,
"Plugins/PayPalCommerce/Webhook",
new { controller = "PayPalCommerceWebhook", action = "WebhookHandler" });
}
///
/// Gets a priority of route provider
///
public int Priority => 0;
}