diff --git a/src/Umbraco.Web.UI.Client/src/installer/steps/database.html b/src/Umbraco.Web.UI.Client/src/installer/steps/database.html index 5d88817ab6..4e3cd9839a 100644 --- a/src/Umbraco.Web.UI.Client/src/installer/steps/database.html +++ b/src/Umbraco.Web.UI.Client/src/installer/steps/database.html @@ -115,8 +115,10 @@
+ +
- + Validating your database connection diff --git a/src/Umbraco.Web/Install/Controllers/InstallApiController.cs b/src/Umbraco.Web/Install/Controllers/InstallApiController.cs index 2cbf6d8117..1d88b9b9a2 100644 --- a/src/Umbraco.Web/Install/Controllers/InstallApiController.cs +++ b/src/Umbraco.Web/Install/Controllers/InstallApiController.cs @@ -80,27 +80,7 @@ namespace Umbraco.Web.Install.Controllers return setup; } - - /// - /// Checks if the db can be connected to - /// - /// - public HttpResponseMessage PostCheckDbConnection() - { - //TODO: Look into using SqlExtensions.IsConnectionAvailable which i started making for this - - throw new NotImplementedException(); - } - - /// - /// Checks if the db credentials are correct - /// - /// - public HttpResponseMessage PostCheckDbCredentials() - { - throw new NotImplementedException(); - } - + public IEnumerable GetPackages() { var r = new org.umbraco.our.Repository();