Skip to content

Commit 2aab61c

Browse files
author
Vladimir Falcón Piva
committed
Merge branch 'release/1.4.4'
2 parents 84696de + c49932e commit 2aab61c

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-07-13 [RELEASE] Release of event_submission 1.4.4 (Vladimir Falcón Piva)
2+
2024-07-13 2f22f38 Event submission, update job status on news update hidden status (Vladimir Falcón Piva)
3+
14
2024-07-10 [RELEASE] Release of event_submission 1.4.3 (Vladimir Falcón Piva)
25
2024-07-10 899ceab Removed dependency to iki site package (Vladimir Falcón Piva)
36
2024-07-02 068df25 Fixed Url for $apiUri (Vladimir Falcón Piva)

Classes/Domain/Repository/JobRepository.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,20 @@ public function findDemanded(DemandInterface $demand): QueryResultInterface
117117
return $query->execute();
118118
}
119119

120+
public function findByEventUid(int $uid): null|object
121+
{
122+
$query = $this->createQuery();
123+
$query->getQuerySettings()->setIgnoreEnableFields(true);
124+
125+
return $query
126+
->matching(
127+
$query->logicalAnd(
128+
$query->equals('event.uid', $uid),
129+
),
130+
)
131+
->execute()->getFirst();
132+
}
133+
120134
protected function applyConstraints(QueryInterface $query, DemandInterface $demand): void
121135
{
122136
$constraints = [];

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'author' => 'Dirk Wenzel',
88
'author_email' => 'd.wenzel@familie-redlich.de',
99
'author_company' => 'CPS GmbH',
10-
'version' => '1.4.3',
10+
'version' => '1.4.4',
1111
'constraints' => [
1212
'depends' => [
1313
'typo3' => '11.99.99-0.0.0',

0 commit comments

Comments
 (0)