pennane / jobel

https://jobel.vercel.app
1 stars 2 forks source link

Create Comment Collection #3

Closed pennane closed 1 year ago

pennane commented 1 year ago

bäkkäriin /models alle uus Comment collection

Comment = jodlaukseen kommentti

interface IComment {
_id: mongo id // tää tulee automaattisesti
userId: userId //kommentoija tekijän Mongo id
visibleId: number // esms @1, @2 ja frontissa mäppäys @0 -> @oj
upVoters: [userId],
downVoters: [userId],
content: string,
timeStamp: Date
}