/src/Oro/Bundle/WorkflowBundle/Resources/public/js/workflow-management/attribute/collection.js
https://github.com/diimpp/platform · JavaScript · 14 lines · 7 code · 1 blank · 6 comment · 0 complexity · 426fb40118af5879249b596fe7681eba MD5 · raw file
- /* global define */
- define(['backbone', 'oroworkflow/js/workflow-management/attribute/model'],
- function(Backbone, AttributeModel) {
- 'use strict';
- /**
- * @export oroworkflow/js/workflow-management/attribute/collection
- * @class oro.workflowManagement.AttributeCollection
- * @extends Backbone.Collection
- */
- return Backbone.Collection.extend({
- model: AttributeModel
- });
- });