Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
302
Merge Requests
39
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
cbd860b3
Commit
cbd860b3
authored
15 minutes ago
by
Ben Hayward
Browse files
Options
Download
Update
parent
009351e2
fix/delete-activity-mod-queue-504
1 merge request
!374
[Sprint/PinkPanther](fix): Delete activity after moderation queue rejection #504
Pipeline
#96800446
passed with stages
in 7 minutes and 33 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
Core/Groups/Feeds.php
View file @
cbd860b3
...
...
@@ -32,7 +32,7 @@ class Feeds
public
function
__construct
(
$entitiesBuilder
=
null
,
$propagateRejection
=
null
)
{
$this
->
entitiesBuilder
=
$entitiesBuilder
?:
Di
::
_
()
->
get
(
'EntitiesBuilder'
);
$this
->
propagateRejection
=
$propagateRejection
?
:
new
PropagateRejection
();
$this
->
propagateRejection
=
$propagateRejection
?
?
new
PropagateRejection
();
}
/**
...
...
This diff is collapsed.
Spec/Core/Groups/FeedsSpec.php
View file @
cbd860b3
...
...
@@ -11,7 +11,7 @@ use Minds\Entities\Group;
use
PhpSpec\ObjectBehavior
;
use
Prophecy\Argument
;
use
Spec\Minds\Mocks
;
use
Core\Groups\Delegates\PropagateRejection
;
use
Minds\
Core\Groups\Delegates\PropagateRejection
;
class
FeedsSpec
extends
ObjectBehavior
{
...
...
@@ -54,7 +54,7 @@ class FeedsSpec extends ObjectBehavior
$this
->
_entitiesBuilder
=
$entitiesBuilder
;
$this
->
_propagateRejection
=
$propagateRejection
;
$this
->
_propagateRejection
=
$propagateRejection
??
new
PropagateRejection
()
;
$this
->
beConstructedWith
(
$entitiesBuilder
,
$propagateRejection
);
}
...
...
This diff is collapsed.
Please
register
or
sign in
to comment