mirror of
https://github.com/duplicati/duplicati.git
synced 2025-11-28 11:30:24 +08:00
This commit removes the Captcha support, and replaces with a copy-paste-able safeguard in the UI.
7 lines
302 B
JavaScript
7 lines
302 B
JavaScript
backupApp.controller('ConfirmDeleteController', function($scope, $location, gettextCatalog) {
|
|
$scope.selection = $scope.$parent.state.CurrentItem;
|
|
|
|
if ($scope.selection.requiredword == '')
|
|
$scope.selection.requiredword = 'delete all files';
|
|
$scope.selection.typedword = '';
|
|
});
|