Add more backup interval secs
This commit is contained in:
@@ -53,7 +53,9 @@ angular.module('Application').controller('BackupsController', ['$scope', '$locat
|
||||
$scope.intervalTimes = [
|
||||
{ name: 'Every 6 hours', value: 6 * 60 * 60 },
|
||||
{ name: 'Every 12 hours', value: 12 * 60 * 60 },
|
||||
{ name: 'Every day', value: 24 * 60 * 60 }
|
||||
{ name: 'Every day', value: 24 * 60 * 60 },
|
||||
{ name: 'Every 3 days', value: 3 * 24 * 60 * 60 },
|
||||
{ name: 'Every week', value: 7 * 24 * 60 * 60 },
|
||||
];
|
||||
|
||||
$scope.formats = [
|
||||
|
||||
Reference in New Issue
Block a user