Upon further debugging, though, it looks like this code from application/Espo/Services/Record.php is throwing the 403 error;
Is it possible to edit noEditAccessRequiredLinkList in order to add my custom entity to it?
PHP Code:
$accessActionRequired = 'edit';
if (in_array($link, $this->noEditAccessRequiredLinkList)) {
$accessActionRequired = 'read';
}
if (!$this->getAcl()->check($foreignEntity, $accessActionRequired)) {
throw new Forbidden();
}
Is it possible to edit noEditAccessRequiredLinkList in order to add my custom entity to it?
Comment