diff options
author | Marvin Borner | 2018-10-25 22:22:55 +0200 |
---|---|---|
committer | Marvin Borner | 2018-10-25 22:22:55 +0200 |
commit | 1309e462efc4a7bbdf538e9d209133c1b3c138a6 (patch) | |
tree | 74be20f30280b52e891f7f3507c9d8569fad6b61 /src/authentication.js | |
parent | 185e0f26c6680c64cb5f2befdedd0cc3bbf09df5 (diff) |
Added authentication and post endpoint
Diffstat (limited to 'src/authentication.js')
-rw-r--r-- | src/authentication.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/authentication.js b/src/authentication.js new file mode 100644 index 0000000..3312a46 --- /dev/null +++ b/src/authentication.js @@ -0,0 +1,27 @@ +const authentication = require('@feathersjs/authentication'); +const jwt = require('@feathersjs/authentication-jwt'); +const local = require('@feathersjs/authentication-local'); + + +module.exports = function (app) { + const config = app.get('authentication'); + + // Set up authentication with the secret + app.configure(authentication(config)); + app.configure(jwt()); + app.configure(local()); + + // The `authentication` service is used to create a JWT. + // The before `create` hook registers strategies that can be used + // to create a new valid JWT (e.g. local or oauth2) + app.service('authentication').hooks({ + before: { + create: [ + authentication.hooks.authenticate(config.strategies) + ], + remove: [ + authentication.hooks.authenticate('jwt') + ] + } + }); +}; |