7 lines
216 B
JavaScript
Executable File
7 lines
216 B
JavaScript
Executable File
const Comment = require('./comment')
|
|
|
|
Comment.belongsTo(Comment, {as: 'parent'})
|
|
Comment.belongsToMany(Comment, {through: 'CommentReplies', as: { singular: 'reply', plural: 'replies' } })
|
|
|
|
module.exports = {Comment}
|