fix: refs #6371 restore tables dock y Tramos #2103

Merged
robert merged 2 commits from 6371-restoreTablesFix into master 2024-02-28 10:51:40 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit 99805a8edd - Show all commits

View File

@ -19,6 +19,7 @@ module.exports = Self => {
FROM ticketTracking tt
WHERE tt.userFk = ?
GROUP BY ticketFk
ORDER BY created DESC
LIMIT 5;`;
return await Self.rawSql(query, [userId]);
};