8 lines
228 B
JavaScript
8 lines
228 B
JavaScript
app.models.Reshare = app.models.Post.extend({
|
|
url : function() { return "/reshares"; },
|
|
|
|
rootPost : function(){
|
|
this._rootPost = this._rootPost || new app.models.Post(this.get("root"))
|
|
return this._rootPost
|
|
}
|
|
});
|