You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently everything is hard wired to read authentication config from authentication.saml which limits IDP servers to one.
In my fork I used `authentication.strateges.filter(s => s instanceOf SamlStrategy) to get a list of all strategies based on SamlStrategy. And then mitigated the global collision, which would ideally be removed by overloading the strategy constructor to accept configuration, and then reading that in the express middleware.
The text was updated successfully, but these errors were encountered:
Currently everything is hard wired to read authentication config from
authentication.saml
which limits IDP servers to one.In my fork I used `authentication.strateges.filter(s => s instanceOf SamlStrategy) to get a list of all strategies based on SamlStrategy. And then mitigated the global collision, which would ideally be removed by overloading the strategy constructor to accept configuration, and then reading that in the express middleware.
The text was updated successfully, but these errors were encountered: