From 77d203b2b05b65d75cbf1eb26e7d98f90f056b6c Mon Sep 17 00:00:00 2001 From: garrettmills Date: Mon, 19 Oct 2020 09:53:27 -0500 Subject: [PATCH] Add missing service injection... --- app/controllers/auth/Oauth2.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/auth/Oauth2.controller.js b/app/controllers/auth/Oauth2.controller.js index f60b109..87ec62c 100644 --- a/app/controllers/auth/Oauth2.controller.js +++ b/app/controllers/auth/Oauth2.controller.js @@ -8,7 +8,7 @@ const Oauth2Controller = require('flitter-auth/controllers/Oauth2') */ class Oauth2 extends Oauth2Controller { static get services() { - return [...super.services, 'Vue', 'configs', 'models'] + return [...super.services, 'Vue', 'configs', 'models', 'output'] } async authorize_post(req, res, next) {