Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EditBackupService.js « services « scripts « ngax « webroot « Server « Duplicati - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78afd33c33ab63576f56c54caae36a4754e2ba6e (plain)
1
2
3
4
5
backupApp.service('EditBackupService', function() {
    // Provide hooks for validation on save
    this.preValidate = function(scope) { return true; };
    this.postValidate = function(scope, continuation) { continuation(); };
});