fix delete site

This commit is contained in:
usmannasir
2025-04-08 00:55:01 +05:00
parent 4004a2f09f
commit 5542250b22

View File

@@ -9658,6 +9658,12 @@ app.controller('listWebsites', function ($scope, $http, $window) {
};
$scope.deleteWPSite = function(wp) {
if (confirm('Are you sure you want to delete this WordPress site? This action cannot be undone.')) {
window.location.href = '/websites/ListWPSites?DeleteID=' + wp.id;
}
};
});
app.controller('listChildDomainsMain', function ($scope, $http, $timeout) {