11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
app.models.StatusMessage = app.models.Post.extend({
|
|
url : function(){
|
|
return this.isNew() ? '/status_messages' : '/posts/' + this.get("id");
|
|
},
|
|
|
|
mungeAndSave : function(){
|
|
var mungedAttrs = {status_message : _.clone(this.attributes), aspect_ids : ["public"]}
|
|
|
|
this.save(mungedAttrs)
|
|
}
|
|
});
|