FIrst nonorganic posts
This commit is contained in:
@@ -7,6 +7,7 @@ class Post {
|
||||
this.reactions = info.reactions || {};
|
||||
this.comments = info.comments || [];
|
||||
this.bookmarks = info.bookmarks || []; //set profiles subscribed to this post
|
||||
this.nonOrganicType = info.nonOrganicType;
|
||||
//This should record edits
|
||||
this.contentHistory = info.contentHistory || [];
|
||||
this.toProfile = info.toProfile || '';
|
||||
@@ -38,6 +39,7 @@ class Post {
|
||||
r.createdAt = this.createdAt;
|
||||
r.reactions = this.reactions;
|
||||
r.comments = this.comments;
|
||||
r.nonOrganicType = this.nonOrganicType;
|
||||
r.contentHistory = this.contentHistory;
|
||||
r.lastUpdated = this.lastUpdated;
|
||||
r.toProfile = this.toProfile;
|
||||
|
||||
Reference in New Issue
Block a user