fix: [object references] Fixed an issue with the reference type not being loaded correctly

pull/4421/head
iglocska 2019-03-11 16:44:34 +01:00
parent 11cd59b941
commit 6f46c022de
1 changed files with 2 additions and 1 deletions

View File

@ -4836,7 +4836,8 @@ class Event extends AppModel
'name' => $object['name'],
'uuid' => $object['uuid'],
'id' => isset($object['id']) ? $object['id'] : 0,
'object_type' => $object['objectType']
'object_type' => $object['objectType'],
'relationship_type' => $reference['relationship_type']
);
}
}