summaryrefslogtreecommitdiff
path: root/src/services/index.ts
blob: 42b1fbd7825d3c056233fcfa03b4f1ebb72bae7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Application } from '@feathersjs/express';
import Products from './products.service';
import Contractors from './contractors.service';
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);
  app.configure(Contractors);
  app.configure(Waybills);
  app.configure(Tranfers);
  app.configure(Spreadsheets);
  app.configure(Uploads);

  app.get('/ping', (req, res) => res.send('pong'));

  app.hooks({
    before: {
      find: sortByDate
    },
  })
};