I">(function() { var extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, hasProp = {}.hasOwnProperty; App.Models.Article.Comment = (function(superClass) { extend(Comment, superClass); Comment.identity = "Article.Comment"; Comment.remoteName = "Comment"; Comment.resources = { url: '/user/articles/:articleId/comments', paginate: { per: 10 }, main: { url: '/articles/:articleId/comments', paginate: { per: 5 } }, admin: { url: '/admin/articles/:articleId/comments', paginate: { per: 5 } } }; Comment.attributes = { author: { validations: { presence: true } }, text: { validations: { presence: true, vulgarity: true } }, articleId: { type: "Int", validations: { presence: true }, remoteName: "article_id" }, createdAt: { type: "Date", remoteName: "created_at" }, updatedAt: { type: "Date", remoteName: "updated_at" }, emotion: { type: "Int" }, pinned: { type: "Boolean" }, adminRate: { type: "Int", remoteName: "admin_rate" } }; function Comment(data) { Comment.__super__.constructor.call(this, data); } Comment.receivedSignal = function(signal, data) {}; Comment.prototype.receivedSignal = function(signal, data) {}; return Comment; })(App.Models.Base); }).call(this); :ET