diff options
Diffstat (limited to 'src/services')
-rw-r--r-- | src/services/index.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/services/index.ts b/src/services/index.ts index 2c3430c..42b1fbd 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -5,6 +5,7 @@ import Waybills from './waybills.service'; import Tranfers from './transfers.service'; import Spreadsheets from './spreadsheets.service'; import Uploads from './uploads.service'; +import sortByDate from '../hooks/sortByDate'; export default (app: Application): void => { app.configure(Products); @@ -15,4 +16,10 @@ export default (app: Application): void => { app.configure(Uploads); app.get('/ping', (req, res) => res.send('pong')); + + app.hooks({ + before: { + find: sortByDate + }, + }) }; |