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