Skip to content
This repository was archived by the owner on Oct 24, 2023. It is now read-only.

Commit 710019e

Browse files
committed
fix(Project): fix optional flag for SearchIndexingConfigurationValues
1 parent 59b6106 commit 710019e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Core/Model/Project/SearchIndexingConfigurationValues.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ public function fieldDefinitions()
2525
'status' => [static::TYPE => 'string', static::OPTIONAL => true],
2626
'lastModifiedAt' => [
2727
static::TYPE => DateTime::class,
28-
static::DECORATOR => DateTimeDecorator::class
28+
static::DECORATOR => DateTimeDecorator::class,
29+
static::OPTIONAL => true
2930
],
3031
'lastModifiedBy' => [static::TYPE => LastModifiedBy::class, static::OPTIONAL => true],
3132
];

0 commit comments

Comments
 (0)