Hi All,
I'm trying to put the two properties in adminAuth in settings.js described at:
https://nodered.org/docs/user-guide/runtime/securing-node-red#token-expiration
i.e.:
adminAuth: { sessionExpiryTime: 86400, ... }
and
https://nodered.org/docs/user-guide/runtime/securing-node-red#custom-user-authentication
i.e.: adminAuth: require("./user-authentication")
I came up with this, but it did not work out:
adminAuth: { sessionExpiryTime: 3600, module: require("./user-authentication") }
Thanks for any hints,
r0ller