| Conditions | 1 |
| Paths | 1 |
| Total Lines | 29 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | define([ |
||
| 3 | ], function(BaseModel) { |
||
| 4 | 'use strict'; |
||
| 5 | |||
| 6 | var CommentModel; |
||
| 7 | |||
| 8 | CommentModel = BaseModel.extend({ |
||
| 9 | defaults: { |
||
| 10 | 'id': null, |
||
| 11 | 'message': null, |
||
| 12 | 'briefMessage': null, |
||
| 13 | 'public': false, |
||
| 14 | 'createdAt': null, |
||
| 15 | 'updatedAt': null, |
||
| 16 | 'permissions': null, |
||
| 17 | 'createdBy': null, |
||
| 18 | 'updatedBy': null |
||
| 19 | }, |
||
| 20 | |||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritDoc |
||
| 24 | */ |
||
| 25 | constructor: function CommentModel() { |
||
| 26 | CommentModel.__super__.constructor.apply(this, arguments); |
||
| 27 | } |
||
| 28 | }); |
||
| 29 | |||
| 30 | return CommentModel; |
||
| 31 | }); |
||
| 32 |