Skip to content

Commit

Permalink
Fix missing common-read normalization group
Browse files Browse the repository at this point in the history
  • Loading branch information
froozeify committed Oct 23, 2024
1 parent 6ef4e25 commit 87227ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/MemberSearchByLicenceOrName.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function __invoke(Request $request, MemberRepository $memberRepository, S
$members = $memberRepository->findByLicenceOrName($query);

return new Response($serializer->serialize($members, 'json', [
'groups' => 'autocomplete'
'groups' => ['autocomplete', 'common-read']
]));
}

Expand Down

0 comments on commit 87227ba

Please sign in to comment.