devo-devo
devo-devo
~~ah I think I should be looking at get_or_create_user! apologies!~~ Hmm looks like I still need to override authenticate as the user isn't saved until _update_user is run....
Thanks so much @peppelinux for your quick response! I think the only issue i have now is how would I associate request.site based roles to my users based upon the...
Hmm I see I can perhaps grab the attributes the `session_info`, however, I also need to grab the attribute mapping from the IdentityProvider model attached to the reques.site. The attributes...
Actually a simpler solve might be 1) only set the mail/email in the SAML_ATTRIBUTE_MAP, 2) then use the post login hook to query IdentityProvider where site=request.site. From there I can...
@peppelinux Added a PR to pass the request to the _update_user here: https://github.com/IdentityPython/djangosaml2/pull/351. But totally understand if that's not the direction you'd like to go.
@peppelinux wondering what you're thinking of this? Not 100% sure what a could test for this would be.
@peppelinux thank you for your notes! updated.
@stephane-klein do you have an example config? i feel like using this secion works a little better ```js webpack: { configure: (webpackConfig, { env, paths }) => {} } }...
I'm using [Remix in SPA mode](https://remix.run/docs/en/main/guides/spa-mode#what-is-spa-mode), which essentially builds everything into a client side app of only html and js - so I won't need to initialize on the server...