mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
573 B
18 lines
573 B
'use strict'
|
|
|
|
/**
|
|
* Associate DB Model relations
|
|
*/
|
|
module.exports = db => {
|
|
db.User.belongsToMany(db.Group, { through: 'userGroups' })
|
|
db.Group.belongsToMany(db.User, { through: 'userGroups' })
|
|
db.Group.hasMany(db.Right)
|
|
db.Right.belongsTo(db.Group)
|
|
db.Document.belongsToMany(db.Tag, { through: 'documentTags' })
|
|
db.Document.hasMany(db.Comment)
|
|
db.Tag.belongsToMany(db.Document, { through: 'documentTags' })
|
|
db.File.belongsTo(db.Folder)
|
|
db.Folder.hasMany(db.File)
|
|
db.Comment.belongsTo(db.Document)
|
|
db.Comment.belongsTo(db.User, { as: 'author' })
|
|
}
|