diff options
Diffstat (limited to 'src/services/accounts.service.ts')
-rw-r--r-- | src/services/accounts.service.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/services/accounts.service.ts b/src/services/accounts.service.ts new file mode 100644 index 0000000..cf22a9b --- /dev/null +++ b/src/services/accounts.service.ts @@ -0,0 +1,10 @@ +import { Application } from '@feathersjs/express'; +import service from 'feathers-mongoose'; +import Model from '../models/account/account.model'; + +const Accounts = service({ Model, whitelist: ['$options', '$regex'] }); + +export default (app: Application): void => { + app.use('/accounts', Accounts); +}; + |