aboutsummaryrefslogtreecommitdiff
path: root/services/index.ts
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-25 12:08:15 +0300
committereug-vs <eug-vs@keemail.me>2020-06-25 12:08:15 +0300
commit64f5f8c3f9660f649dfdaad07d84aa8c26b9661e (patch)
treef6ad390823b39bbc8f956843e062a59997033eb3 /services/index.ts
parenta9678b794758164a86a8c136c1d8acc8b1d0135d (diff)
downloadwhich-api-64f5f8c3f9660f649dfdaad07d84aa8c26b9661e.tar.gz
feat: setup global auth hooks
Diffstat (limited to 'services/index.ts')
-rw-r--r--services/index.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/services/index.ts b/services/index.ts
index 638fb7a..fe5ffdc 100644
--- a/services/index.ts
+++ b/services/index.ts
@@ -5,11 +5,19 @@ import Profiles from './profiles/profiles.service';
import Votes from './votes/votes.service';
import Auth from './auth/auth.service';
+import tryAuthenticate from '../hooks/tryAuthenticate';
+
export default (app: Application): void => {
app.configure(Auth);
app.configure(Users);
app.configure(Polls);
app.configure(Profiles);
app.configure(Votes);
+
+ app.hooks({
+ before: {
+ all: tryAuthenticate
+ }
+ })
};