2017-07-22 23:56:46 -04:00
|
|
|
/**
|
|
|
|
* Associate DB Model relations
|
|
|
|
*/
|
|
|
|
module.exports = db => {
|
2017-07-29 00:11:22 -04:00
|
|
|
db.User.belongsToMany(db.Group, { through: 'userGroups' })
|
2017-08-06 21:05:10 -04:00
|
|
|
db.Group.belongsToMany(db.User, { through: 'userGroups' })
|
2017-08-13 20:33:06 -04:00
|
|
|
db.Group.hasMany(db.Right)
|
2017-08-19 22:51:25 -04:00
|
|
|
db.Right.belongsTo(db.Group)
|
2017-08-13 20:33:06 -04:00
|
|
|
db.Document.belongsToMany(db.Tag, { through: 'documentTags' })
|
2017-08-19 22:51:25 -04:00
|
|
|
db.Document.hasMany(db.Comment)
|
2017-08-13 20:33:06 -04:00
|
|
|
db.Tag.belongsToMany(db.Document, { through: 'documentTags' })
|
2017-07-22 23:56:46 -04:00
|
|
|
db.File.belongsTo(db.Folder)
|
2017-08-13 20:33:06 -04:00
|
|
|
db.Folder.hasMany(db.File)
|
2017-07-29 00:11:22 -04:00
|
|
|
db.Comment.belongsTo(db.Document)
|
|
|
|
db.Comment.belongsTo(db.User, { as: 'author' })
|
2017-07-22 23:56:46 -04:00
|
|
|
}
|