Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/query/PhabricatorProjectQuery.php
| Show First 20 Lines • Show All 650 Lines • ▼ Show 20 Lines | protected function buildWhereClauseParts(AphrontDatabaseConnection $conn) { | ||||
| return $where; | return $where; | ||||
| } | } | ||||
| protected function shouldGroupQueryResultRows() { | protected function shouldGroupQueryResultRows() { | ||||
| if ($this->memberPHIDs || $this->watcherPHIDs || $this->nameTokens) { | if ($this->memberPHIDs || $this->watcherPHIDs || $this->nameTokens) { | ||||
| return true; | return true; | ||||
| } | } | ||||
| if ($this->slugs) { | |||||
| return true; | |||||
| } | |||||
| return parent::shouldGroupQueryResultRows(); | return parent::shouldGroupQueryResultRows(); | ||||
| } | } | ||||
| protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) { | protected function buildJoinClauseParts(AphrontDatabaseConnection $conn) { | ||||
| $joins = parent::buildJoinClauseParts($conn); | $joins = parent::buildJoinClauseParts($conn); | ||||
| if ($this->memberPHIDs !== null) { | if ($this->memberPHIDs !== null) { | ||||
| $joins[] = qsprintf( | $joins[] = qsprintf( | ||||
| ▲ Show 20 Lines • Show All 230 Lines • Show Last 20 Lines | |||||