aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/index.ts8
-rw-r--r--services/votes/votes.hooks.ts4
2 files changed, 10 insertions, 2 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
+ }
+ })
};
diff --git a/services/votes/votes.hooks.ts b/services/votes/votes.hooks.ts
index 63f19e3..1cf7261 100644
--- a/services/votes/votes.hooks.ts
+++ b/services/votes/votes.hooks.ts
@@ -1,5 +1,5 @@
import { HookContext } from '@feathersjs/feathers';
-import { authenticate } from '@feathersjs/authentication';
+import requireAuth from '../../hooks/requireAuth';
const addUserId = async (context: HookContext): Promise<HookContext> => {
const { params: { user} } = context;
@@ -9,7 +9,7 @@ const addUserId = async (context: HookContext): Promise<HookContext> => {
export default {
before: {
- create: [authenticate('jwt'), addUserId]
+ create: [requireAuth, addUserId]
}
};