|
@@ -45,6 +45,11 @@ module.exports = async (dbName='hipstagram') => {
|
|
|
super(...params)
|
|
|
//TODO: calc likes count by getter (no two-way relation for this to avoid overflow on many Kilos of likes
|
|
|
//cached like count, which incremented and decremented
|
|
|
+ //
|
|
|
+ //
|
|
|
+
|
|
|
+ this.comments = this.comments instanceof Array ?
|
|
|
+ this.comments : this.comments ? [] : [this.comments]
|
|
|
}
|
|
|
|
|
|
static get relations(){
|