Add Bible verse highlights and notes API

This commit is contained in:
Adolfo Reyna
2026-05-28 20:45:41 -04:00
parent ef7c24c884
commit 65a4178e2b
6 changed files with 617 additions and 3 deletions
+3 -1
View File
@@ -17,6 +17,8 @@ class User {
this.lastUpdate = info.lastUpdate || new Date();
this.newsFeedCache = info.newsFeedCache || [];
this.notifications = info.notifications || [];
this.bibleHighlights = info.bibleHighlights || [];
this.bibleNotes = info.bibleNotes || [];
//groupRelated
this.isGroup = info.isGroup || false;
@@ -33,4 +35,4 @@ class User {
}
module.exports = User;
module.exports = User;