Fix for document permissions (#2415)
This commit is contained in:
parent
046085eb1a
commit
e254cf3833
1 changed files with 1 additions and 1 deletions
|
|
@ -179,7 +179,7 @@ class EntityModel extends Eloquent
|
|||
}
|
||||
}
|
||||
|
||||
if (Auth::check() && method_exists($this, 'getEntityType') && ! Auth::user()->hasPermission('view_' . $this->getEntityType()) && $this->getEntityType() != ENTITY_TAX_RATE) {
|
||||
if (Auth::check() && method_exists($this, 'getEntityType') && ! Auth::user()->hasPermission('view_' . $this->getEntityType()) && $this->getEntityType() != ENTITY_TAX_RATE && $this->getEntityType() != ENTITY_DOCUMENT) {
|
||||
$query->where(Utils::pluralizeEntityType($this->getEntityType()) . '.user_id', '=', Auth::user()->id);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue