summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/models/File.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/models/File.js')
-rw-r--r--module/web/static/js/models/File.js13
1 files changed, 12 insertions, 1 deletions
diff --git a/module/web/static/js/models/File.js b/module/web/static/js/models/File.js
index 66d9ef050..efea23254 100644
--- a/module/web/static/js/models/File.js
+++ b/module/web/static/js/models/File.js
@@ -23,13 +23,24 @@ define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) {
},
+ destroy: function() {
+
+ },
+
+ restart: function(options) {
+ options || (options = {});
+ options.url = 'api/restartFile/' + this.get('fid');
+
+ return $.ajax(options);
+ },
+
// Any time a model attribute is set, this method is called
validate: function(attrs) {
},
isDownload : function() {
- return this.has('download')
+ return this.has('download');
}
});