remove unused function

This commit is contained in:
Girish Ramakrishnan
2024-04-25 14:50:02 +02:00
parent cae2bfbdc2
commit 53ad3902ac
2 changed files with 0 additions and 18 deletions

View File

@@ -67,15 +67,6 @@ app.controller('RestoreController', ['$scope', 'Client', function ($scope, Clien
{ name: 'Network Interface', value: 'network-interface' }
];
$scope.prettySysinfoProviderName = function (provider) {
switch (provider) {
case 'generic': return 'Public IP';
case 'fixed': return 'Static IP Address';
case 'network-interface': return 'Network Interface';
default: return 'Unknown';
}
};
$scope.s3Regions = REGIONS_S3;
$scope.wasabiRegions = REGIONS_WASABI;
$scope.doSpacesRegions = REGIONS_DIGITALOCEAN;