Browse Source

Merge branch 'develop'

feature/symfony6.1
Guillaume 3 years ago
parent
commit
173b4374f6
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      Repository/User/GroupUserRepositoryQuery.php

+ 1
- 2
Repository/User/GroupUserRepositoryQuery.php View File



public function joinUsers(): self public function joinUsers(): self
{ {

if (!$this->isJoinUsers) { if (!$this->isJoinUsers) {
$this->isJoinUsers = true; $this->isJoinUsers = true;
return $this return $this
->innerJoin('.users', 'users');
->leftJoin('.users', 'users');
} }
return $this; return $this;
} }

Loading…
Cancel
Save