Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
274
Issues
274
List
Boards
Labels
Service Desk
Milestones
Merge Requests
46
Merge Requests
46
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
ba9ab238
Commit
ba9ab238
authored
13 hours ago
by
Brian Hatchet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ignoring entities that don't support the methods used by permissions
parent
cefccd1c
epic/permissions-28
1 merge request
!350
WIP: Epic/permissions 28
Pipeline
#90373443
passed with stages
in 9 minutes and 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
Core/Permissions/Permissions.php
Core/Permissions/Permissions.php
+8
-0
No files found.
Core/Permissions/Permissions.php
View file @
ba9ab238
...
...
@@ -75,6 +75,14 @@ class Permissions implements \JsonSerializable
public
function
calculate
(
array
$entities
=
[])
:
void
{
foreach
(
$entities
as
$entity
)
{
if
(
!
method_exists
(
$entity
,
'getOwnerObj'
)
&&
!
method_exists
(
$entity
,
'getOwner'
))
{
continue
;
}
if
(
!
method_exists
(
$entity
,
'getOwnerGuid'
))
{
continue
;
}
if
(
$entity
)
{
$this
->
entities
[
$entity
->
getGuid
()]
=
$this
->
getRoleForEntity
(
$entity
);
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment