Add more backup interval secs

This commit is contained in:
Girish Ramakrishnan
2018-08-28 22:10:17 -07:00
parent 507c8b8786
commit cb7d160346
+3 -1
View File
@@ -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 = [