VProfileList.js 496 B

12345678910111213
  1. define([ "require", "utils/Globals", "collection/BaseCollection", "models/VProfile" ], function(require, Globals, BaseCollection, VProfile) {
  2. "use strict";
  3. var VProfileList = BaseCollection.extend({
  4. url: Globals.baseURL + "/api/atlas/entities",
  5. model: VProfile,
  6. initialize: function() {
  7. this.modelName = "VProfile", this.modelAttrName = "definition", this.bindErrorEvents();
  8. }
  9. }, {
  10. tableCols: {}
  11. });
  12. return VProfileList;
  13. });