Skip to content

Commit

Permalink
Merge pull request #2447 from LibreSign/backport/2446/stable28
Browse files Browse the repository at this point in the history
[stable28] Fix column order
  • Loading branch information
vitormattos authored Mar 6, 2024
2 parents c74ca3b + 2b857d6 commit cf202e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Db/SignRequestMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,6 @@ private function getFilesAssociatedFilesWithMeQueryBuilder(string $userId, ?stri

private function getFilesAssociatedFilesWithMeStmt(string $userId, ?string $email, ?array $filter = []): Pagination {
$qb = $this->getFilesAssociatedFilesWithMeQueryBuilder($userId, $email, $filter);
$qb->selectAlias('f.created_at', 'request_date');
$qb->select(
'f.id',
'f.node_id',
Expand All @@ -430,6 +429,7 @@ private function getFilesAssociatedFilesWithMeStmt(string $userId, ?string $emai
'f.name',
'f.status'
);
$qb->selectAlias('f.created_at', 'request_date');

$countQueryBuilderModifier = function (IQueryBuilder &$qb): void {
/** @todo improve this to don't do two queries */
Expand Down

0 comments on commit cf202e9

Please sign in to comment.