Async
This commit is contained in:
@@ -46,7 +46,7 @@ export default async ({ app, container }) => {
|
||||
|
||||
// Alternatively use bearer token to authenticate to the admin api
|
||||
passport.use(
|
||||
new BearerStrategy((token, done) => {
|
||||
new BearerStrategy(async (token, done) => {
|
||||
const auth = await authService.authenticateAPIToken(token)
|
||||
if (auth.success) {
|
||||
done(null, auth.user)
|
||||
|
||||
Reference in New Issue
Block a user