116117118119120121122123
comment.article = this; comment.save(); comments.add(comment); if (valid) { new CommentArticleActivity(comment.author, this, comment).save(); } }
135136137138139140141142
this.save(); new NewArticleActivity(this).save(); // Publication des activités sur les hypothétiques commentaires existants for (ArticleComment comment : this.comments) { new CommentArticleActivity(comment.author, this, comment).save(); } }