Skip to content

Commit

Permalink
Add sort and query_scope parameter handling to search:results t…
Browse files Browse the repository at this point in the history
…ag. Closes #2383.
  • Loading branch information
jesseleite committed Feb 10, 2021
1 parent a54c384 commit d403f38
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Search/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
class Tags extends BaseTags
{
use Concerns\OutputsItems,
Concerns\QueriesConditions;
Concerns\QueriesConditions,
Concerns\QueriesScopes,
Concerns\QueriesOrderBys;
use Concerns\GetsQueryResults {
results as getQueryResults;
}
Expand All @@ -33,6 +35,8 @@ public function results()
$this->querySite($builder);
$this->queryStatus($builder);
$this->queryConditions($builder);
$this->queryScopes($builder);
$this->queryOrderBys($builder);

$results = $this->getQueryResults($builder);
$results = $this->addResultTypes($results);
Expand Down

0 comments on commit d403f38

Please sign in to comment.