forked from notnull/mwe-comments
10 lines
217 B
JavaScript
Executable File
10 lines
217 B
JavaScript
Executable File
const Comment = require('./comment')
|
|
|
|
Comment.belongsTo(Comment, { as: 'parent' })
|
|
Comment.hasMany(Comment, {
|
|
as: { singular: 'reply', plural: 'replies' },
|
|
foreignKey: 'parentId',
|
|
})
|
|
|
|
module.exports = { Comment }
|