feature/update-soko-web-to-0.7 #35
@ -48,7 +48,7 @@ class CommunityController implements IAuthenticationRequired
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
\Container::$persistentDataManager->loadRelationsFromDb($community, false);
|
\Container::$persistentDataManager->loadRelationsFromDb($community, false, ['main_currency']);
|
||||||
|
|
||||||
return new HtmlContent('communities/community', [
|
return new HtmlContent('communities/community', [
|
||||||
'community' => $community,
|
'community' => $community,
|
||||||
@ -326,7 +326,7 @@ class CommunityController implements IAuthenticationRequired
|
|||||||
|
|
||||||
private function getMembers(Community $community): array
|
private function getMembers(Community $community): array
|
||||||
{
|
{
|
||||||
$members = iterator_to_array($this->communityMemberRepository->getAllByCommunity($community, true, [User::class]));
|
$members = iterator_to_array($this->communityMemberRepository->getAllByCommunity($community, true, ['user']));
|
||||||
usort($members, function($a, $b) {
|
usort($members, function($a, $b) {
|
||||||
return strnatcmp($a->getUser()->getDisplayName(), $b->getUser()->getDisplayName());
|
return strnatcmp($a->getUser()->getDisplayName(), $b->getUser()->getDisplayName());
|
||||||
});
|
});
|
||||||
|
@ -28,7 +28,7 @@ class HomeController implements IAuthenticationRequired
|
|||||||
*/
|
*/
|
||||||
$user = \Container::$request->user();
|
$user = \Container::$request->user();
|
||||||
|
|
||||||
$ownCommunityMembers = $this->communityMemberRepository->getAllByUser($user, true, [Community::class]);
|
$ownCommunityMembers = $this->communityMemberRepository->getAllByUser($user, true, ['community']);
|
||||||
$communities = [];
|
$communities = [];
|
||||||
foreach ($ownCommunityMembers as $ownCommunityMember) {
|
foreach ($ownCommunityMembers as $ownCommunityMember) {
|
||||||
$communities[] = $ownCommunityMember->getCommunity();
|
$communities[] = $ownCommunityMember->getCommunity();
|
||||||
|
Loading…
Reference in New Issue
Block a user