aboutsummaryrefslogtreecommitdiff
path: root/services/index.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-28 16:18:20 +0300
committereug-vs <eug-vs@keemail.me>2020-06-28 16:18:20 +0300
commit02b0da08155c6615a48b8d7f49648c19c1600020 (patch)
tree5916962aacc99214780cc9c9ede7a0b0df160d1b /services/index.ts
parent302a76985cef867f509a4180387cc45e934452d5 (diff)
downloadwhich-api-02b0da08155c6615a48b8d7f49648c19c1600020.tar.gz
feat: create feedback 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 1763a17..e5ea703 100644
--- a/services/index.ts
+++ b/services/index.ts
@@ -5,6 +5,7 @@ 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 Feedback from './feedback/feedback.service';
import tryAuthenticate from '../hooks/tryAuthenticate';
import logging from '../hooks/logging';
@@ -17,6 +18,7 @@ export default (app: Application): void => {
app.configure(Profiles);
app.configure(Votes);
app.configure(Feed);
+ app.configure(Feedback);
app.hooks({
before: {