Starts implementing ability to manually run pending migrations from the back office

This commit is contained in:
Shannon
2021-06-16 15:34:20 -06:00
parent 7ec01f232f
commit ad84c1591e
17 changed files with 228 additions and 49 deletions

View File

@@ -129,10 +129,7 @@ namespace Umbraco.Cms.Web.BackOffice.Controllers
/// Returns all installed packages - only shows their latest versions
/// </summary>
/// <returns></returns>
public IEnumerable<PackageDefinition> GetInstalled()
{
return _packagingService.GetAllInstalledPackages()
.ToList();
}
public IEnumerable<InstalledPackage> GetInstalled()
=> _packagingService.GetAllInstalledPackages().ToList();
}
}