This commit is contained in:
Tilman Kamp 2019-04-11 13:58:14 +02:00
Родитель 95ce70367c
Коммит 4842f901e5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -35,7 +35,7 @@ AutoShare.belongsTo(Group)
const userPrefix = '/data/home/'
User.prototype.isMemberOf = async function (group) {
return group && await User.UserGroup.findOne({ userId: this.id, groupId: group.id })
return group && await User.UserGroup.findOne({ where: { userId: this.id, groupId: group.id } })
}
User.afterCreate(async user => {