1
0
Fork 0
arangodb/html/admin/js/models/foxx.js

19 lines
285 B
JavaScript

window.Foxx = Backbone.Model.extend({
defaults: {
"title": "",
"version": "",
"mount": "",
"description": "",
"git": ""
},
url: function() {
return "../../aardvark/foxxes/" + this.get("_key");
},
isNew: function() {
return false;
}
});