Test Setup Failed
Push — master ( 982d9a...a2862f )
by
unknown
03:40
created

model.js ➔ define   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 26

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 26
rs 8.8571
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A model.js ➔ ... ➔ EntityManagementModel 0 3 1
1
define(['backbone'], function(Backbone) {
2
    'use strict';
3
4
    var EntityManagementModel;
5
    /**
6
     * @class   orochannel.entityManagement.Model
7
     * @extends Backbone.Model
8
     */
9
    EntityManagementModel = Backbone.Model.extend({
10
        defaults: {
11
            icon: null,
12
            name: null,
13
            label: null,
14
            actions: []
15
        },
16
17
        /**
18
         * @inheritDoc
19
         */
20
        constructor: function EntityManagementModel() {
21
            EntityManagementModel.__super__.constructor.apply(this, arguments);
22
        }
23
    });
24
25
    return EntityManagementModel;
26
});
27