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

19 lines
363 B
JavaScript

/*jslint indent: 2, nomen: true, maxlen: 100, sloppy: true, vars: true, white: true, plusplus: true */
/*global window, Backbone*/
window.arangoCollection = Backbone.Model.extend({
initialize: function () {
},
urlRoot: "/_api/collection",
defaults: {
id: "",
name: "",
status: "",
type: "",
isSystem: false,
picture: ""
}
});