aboutsummaryrefslogtreecommitdiff
path: root/services/index.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-27 00:18:32 +0300
committereug-vs <eug-vs@keemail.me>2020-06-27 00:18:32 +0300
commit9a488369a481d92fed348df3de71bf612c4183d5 (patch)
tree18ad5d965f5a030118b2acdaead8459c3320bca3 /services/index.ts
parent24119e59528c4425ae255c7381fdba5cfd5a7071 (diff)
downloadwhich-api-9a488369a481d92fed348df3de71bf612c4183d5.tar.gz
feat: create feed service
Diffstat (limited to 'services/index.ts')
-rw-r--r--services/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/services/index.ts b/services/index.ts
index bdce04f..1763a17 100644
--- a/services/index.ts
+++ b/services/index.ts
@@ -4,6 +4,7 @@ import Polls from './polls/polls.service';
import Profiles from './profiles/profiles.service';
import Votes from './votes/votes.service';
import Auth from './auth/auth.service';
+import Feed from './feed/feed.service';
import tryAuthenticate from '../hooks/tryAuthenticate';
import logging from '../hooks/logging';
@@ -15,6 +16,7 @@ export default (app: Application): void => {
app.configure(Polls);
app.configure(Profiles);
app.configure(Votes);
+ app.configure(Feed);
app.hooks({
before: {