for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
define([
'oroui/js/app/models/base/model'
], function(BaseModel) {
'use strict';
var CommentModel;
CommentModel = BaseModel.extend({
defaults: {
'id': null,
'message': null,
'briefMessage': null,
'public': false,
'createdAt': null,
'updatedAt': null,
'permissions': null,
'createdBy': null,
'updatedBy': null
},
/**
* @inheritDoc
*/
constructor: function CommentModel() {
CommentModel.__super__.constructor.apply(this, arguments);
}
});
return CommentModel;