2020-04-10 08:59:39 +02:00
|
|
|
|
|
2017-09-13 15:47:34 +09:00
|
|
|
|
using BTCPayServer.Controllers;
|
2020-03-13 11:47:22 +01:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Microsoft.AspNetCore.Routing;
|
2017-09-13 15:47:34 +09:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.AspNetCore.Mvc
|
|
|
|
|
{
|
|
|
|
|
public static class UrlHelperExtensions
|
|
|
|
|
{
|
2020-04-10 08:59:39 +02:00
|
|
|
|
public static string EmailConfirmationLink(this LinkGenerator urlHelper, string userId, string code, string scheme, HostString host, string pathbase)
|
2017-09-13 15:47:34 +09:00
|
|
|
|
{
|
2020-04-10 08:59:39 +02:00
|
|
|
|
return urlHelper.GetUriByAction( nameof(AccountController.ConfirmEmail), "Account",
|
|
|
|
|
new {userId, code}, scheme, host, pathbase);
|
2017-09-13 15:47:34 +09:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string ResetPasswordCallbackLink(this IUrlHelper urlHelper, string userId, string code, string scheme)
|
|
|
|
|
{
|
|
|
|
|
return urlHelper.Action(
|
|
|
|
|
action: nameof(AccountController.ResetPassword),
|
|
|
|
|
controller: "Account",
|
|
|
|
|
values: new { userId, code },
|
|
|
|
|
protocol: scheme);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|