I'm trying to activate the SSO-OAUTH plugin and running into errors. One of them occurs because of this line in the plugin source, library.js:
var authenticationController = module.parent.require('./controllers/authentication');
The ./controllers/authentication
file is being referenced in library.js
, which is in ~/mysite/public/node_modules/nodebb-plugin-sso-oauth
, so... NOT at that path! It's actually at ~/mysite/public/src/
.
So, do I need to modify any and all references to files/folders in the plugin? I expected most of them to be relatively accurate.
Thank you!