aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares/validators/plugins.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/middlewares/validators/plugins.ts')
-rw-r--r--server/middlewares/validators/plugins.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/middlewares/validators/plugins.ts b/server/middlewares/validators/plugins.ts
index bbac55a50..1083e0afa 100644
--- a/server/middlewares/validators/plugins.ts
+++ b/server/middlewares/validators/plugins.ts
@@ -50,9 +50,9 @@ const getExternalAuthValidator = [
50 if (areValidationErrors(req, res)) return 50 if (areValidationErrors(req, res)) return
51 51
52 const plugin = res.locals.registeredPlugin 52 const plugin = res.locals.registeredPlugin
53 if (!plugin.registerHelpersStore) return res.sendStatus(HttpStatusCode.NOT_FOUND_404) 53 if (!plugin.registerHelpers) return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
54 54
55 const externalAuth = plugin.registerHelpersStore.getExternalAuths().find(a => a.authName === req.params.authName) 55 const externalAuth = plugin.registerHelpers.getExternalAuths().find(a => a.authName === req.params.authName)
56 if (!externalAuth) return res.sendStatus(HttpStatusCode.NOT_FOUND_404) 56 if (!externalAuth) return res.sendStatus(HttpStatusCode.NOT_FOUND_404)
57 57
58 res.locals.externalAuth = externalAuth 58 res.locals.externalAuth = externalAuth