Newer
Older
InMemoryBus / src / Web / Extensions / UrlHelperExtensions.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 387 bytes Init
namespace Microsoft.AspNetCore.Mvc;

public static class UrlHelperExtensions
{
    public static string? EmailConfirmationLink(this IUrlHelper urlHelper, string userId, string code, string scheme)
    {
        return urlHelper.Action(
            action: "GET",
            controller: "ConfirmEmail",
            values: new { userId, code },
            protocol: scheme);
    }
}