From 3a2cdd13b0374aab279b8dd819b03f82013cb026 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 13:31:45 +0300 Subject: feat: add Waybills service --- src/services/index.ts | 2 ++ src/services/waybills.service.ts | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/services/waybills.service.ts (limited to 'src/services') diff --git a/src/services/index.ts b/src/services/index.ts index 9b3511b..cabfff3 100644 --- a/src/services/index.ts +++ b/src/services/index.ts @@ -1,10 +1,12 @@ import { Application } from '@feathersjs/express'; import Products from './products.service'; import Contractors from './contractors.service'; +import Waybills from './waybills.service'; export default (app: Application): void => { app.configure(Products); app.configure(Contractors); + app.configure(Waybills); app.get('/ping', (req, res) => res.send('pong')); }; diff --git a/src/services/waybills.service.ts b/src/services/waybills.service.ts new file mode 100644 index 0000000..7aea1e3 --- /dev/null +++ b/src/services/waybills.service.ts @@ -0,0 +1,10 @@ +import { Application } from '@feathersjs/express'; +import service from 'feathers-mongoose'; +import Model from '../models/waybill/waybill.model'; + +const waybills = service({ Model }); + +export default (app: Application): void => { + app.use('/waybills', waybills); +}; + -- cgit v1.2.3