Skip to content

Commit

Permalink
fix to ipartial
Browse files Browse the repository at this point in the history
  • Loading branch information
aynsix committed Jun 11, 2024
1 parent e0b2ac1 commit 662440b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion expose/api/src/Entity/Publication.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @ORM\Entity()
* @ApiFilter(OrderFilter::class, properties={"title": "ASC", "createdAt": "DESC", "updatedAt": "DESC"}, arguments={"orderParameterName"="order"})
* @ApiFilter(PublicationFilter::class, properties={"flatten", "parentId", "profileId", "mine", "expired"})
* @ApiFilter(SearchFilter::class, properties={"title": "partial", "description": "partial"})
* @ApiFilter(SearchFilter::class, properties={"title": "ipartial", "description": "ipartial"})
* @ApiFilter(DateFilter::class, properties={"config.beginsAt", "config.expiresAt", "createdAt"})
* @ApiResource(
* attributes={
Expand Down
2 changes: 1 addition & 1 deletion expose/api/src/Entity/PublicationProfile.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
* @ORM\Entity()
* @ApiFilter(SearchFilter::class, properties={"title": "partial", "description": "partial"})
* @ApiFilter(SearchFilter::class, properties={"name": "ipartial"})
* @ApiResource(
* normalizationContext=PublicationProfile::API_READ,
* itemOperations={
Expand Down

0 comments on commit 662440b

Please sign in to comment.