fix delete site

This commit is contained in:
usmannasir
2025-04-08 00:55:01 +05:00
parent 84a1edf67c
commit 6917dd3f09

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) {