Newer
Older
TestingWithoutInterfaces / src / Web / Extensions / UrlHelperExtensions.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 386 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);
    }
}