Files
Umbraco-CMS/src/Umbraco.Web.BackOffice/Extensions/LinkGeneratorExtensions.cs

24 lines
976 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Routing;
using Umbraco.Cms.Core;
using Umbraco.Cms.Web.BackOffice.Install;
namespace Umbraco.Extensions;
public static class BackofficeLinkGeneratorExtensions
{
/// <summary>
/// Returns the URL for the installer
/// </summary>
public static string? GetInstallerUrl(this LinkGenerator linkGenerator)
=> linkGenerator.GetPathByAction(nameof(InstallController.Index), ControllerExtensions.GetControllerName<InstallController>(), new { area = Constants.Web.Mvc.InstallArea });
/// <summary>
/// Returns the URL for the installer api
/// </summary>
public static string? GetInstallerApiUrl(this LinkGenerator linkGenerator)
=> linkGenerator.GetPathByAction(
nameof(InstallApiController.GetSetup),
ControllerExtensions.GetControllerName<InstallApiController>(),
new { area = Constants.Web.Mvc.InstallArea })?.TrimEnd(nameof(InstallApiController.GetSetup));
}