From 5b587cff62b584fb5896f910f03f28f80cc28c54 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Jun 2020 17:05:34 +0300 Subject: feat: create auth service --- services/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'services/index.ts') diff --git a/services/index.ts b/services/index.ts index d946e9d..f000837 100644 --- a/services/index.ts +++ b/services/index.ts @@ -2,8 +2,10 @@ import { Application } from '@feathersjs/express'; import Users from './users/users.service'; import Polls from './polls/polls.service'; import Profiles from './profiles/profiles.service'; +import Auth from './auth/auth.service'; export default (app: Application): void => { + app.configure(Auth); app.configure(Users); app.configure(Polls); app.configure(Profiles); -- cgit v1.2.3