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
242
Issues
242
List
Boards
Labels
Service Desk
Milestones
Merge Requests
31
Merge Requests
31
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
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
0032c435
Commit
0032c435
authored
47 minutes ago
by
Guy Thouret
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(chore) Lint recent changes -
#616
parent
4d3e9456
chore/616-propogate-props
1 merge request
!303
WIP: Propogate Properties when entities get updated
Pipeline
#79226006
passed with stages
in 11 minutes and 12 seconds
Changes
7
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
14 deletions
+7
-14
Manager.php
Core/Permissions/Manager.php
+1
-2
PropagatePropertiesSpec.php
Spec/Core/Blogs/Delegates/PropagatePropertiesSpec.php
+1
-2
PropagatePropertiesSpec.php
Spec/Core/Entities/Delegates/PropagatePropertiesSpec.php
+1
-2
PropagatePropertiesSpec.php
Spec/Core/Entities/PropagatePropertiesSpec.php
+1
-2
PropagatePropertiesSpec.php
Spec/Core/Feeds/Delegates/PropagatePropertiesSpec.php
+1
-2
PropagatePropertiesSpec.php
Spec/Core/Media/Delegates/PropagatePropertiesSpec.php
+1
-2
PropagatePropertiesSpec.php
Spec/Core/Permissions/Delegates/PropagatePropertiesSpec.php
+1
-2
No files found.
Core/Permissions/Manager.php
View file @
0032c435
...
...
@@ -17,8 +17,7 @@ class Manager
public
function
__construct
(
Save
$save
=
null
,
PropagateProperties
$propagateProperties
=
null
)
{
)
{
$this
->
save
=
$save
?:
new
Save
();
$this
->
propagateProperties
=
$propagateProperties
??
Di
::
_
()
->
get
(
'PropagateProperties'
);
}
...
...
This diff is collapsed.
Click to expand it.
Spec/Core/Blogs/Delegates/PropagatePropertiesSpec.php
View file @
0032c435
...
...
@@ -17,8 +17,7 @@ class PropagatePropertiesSpec extends ObjectBehavior
public
function
let
(
Blog
$blog
,
Activity
$activity
)
{
)
{
$this
->
blog
=
$blog
;
$this
->
activity
=
$activity
;
}
...
...
This diff is collapsed.
Click to expand it.
Spec/Core/Entities/Delegates/PropagatePropertiesSpec.php
View file @
0032c435
...
...
@@ -16,8 +16,7 @@ class PropagatePropertiesSpec extends ObjectBehavior
public
function
let
(
Blog
$blog
,
Activity
$activity
)
{
)
{
$this
->
blog
=
$blog
;
$this
->
activity
=
$activity
;
}
...
...
This diff is collapsed.
Click to expand it.
Spec/Core/Entities/PropagatePropertiesSpec.php
View file @
0032c435
...
...
@@ -24,8 +24,7 @@ class PropagatePropertiesSpec extends ObjectBehavior
EntitiesBuilder
$entitiesBuilder
,
Activity
$activity
,
Entity
$entity
)
{
)
{
$this
->
beConstructedWith
(
$db
,
$save
,
$entitiesBuilder
);
$this
->
db
=
$db
;
$this
->
save
=
$save
;
...
...
This diff is collapsed.
Click to expand it.
Spec/Core/Feeds/Delegates/PropagatePropertiesSpec.php
View file @
0032c435
...
...
@@ -16,8 +16,7 @@ class PropagatePropertiesSpec extends ObjectBehavior
public
function
let
(
Entity
$entity
,
Activity
$activity
)
{
)
{
$this
->
entity
=
$entity
;
$this
->
activity
=
$activity
;
}
...
...
This diff is collapsed.
Click to expand it.
Spec/Core/Media/Delegates/PropagatePropertiesSpec.php
View file @
0032c435
...
...
@@ -16,8 +16,7 @@ class PropagatePropertiesSpec extends ObjectBehavior
public
function
let
(
Image
$entity
,
Activity
$activity
)
{
)
{
$this
->
entity
=
$entity
;
$this
->
activity
=
$activity
;
}
...
...
This diff is collapsed.
Click to expand it.
Spec/Core/Permissions/Delegates/PropagatePropertiesSpec.php
View file @
0032c435
...
...
@@ -16,8 +16,7 @@ class PropagatePropertiesSpec extends ObjectBehavior
public
function
let
(
Entity
$entity
,
Activity
$activity
)
{
)
{
$this
->
entity
=
$entity
;
$this
->
activity
=
$activity
;
}
...
...
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