Damir Bolic
Damir Bolic
Deleting session, removing all cookies seems to solve this issue. It is as sometimes corrupted data is written in some of the cookies azure uses... (removing cookies from azure login...
I see. Thanks for clarification.
@MrSwitch Thanks. I will try it, think it should work. Will let you know
Still unable to solve this. :( Hellojs is able to pick up user session changes. Therefore I am able to log in, and when logged in i am able to...
Just found that redirect.html hello.js will populate session storage ( localStorage). Guess I can just check localstorage when app starts and if theres an error code for password reset call...
@LTrain Hey, here it is, its just parsing content of localstorage and invoking pass reset profile if needed: ``` if (localStorage && localStorage.getItem('hello')) { let helloState = JSON.parse(localStorage.getItem('hello').toString()); let azureProfileName...
PASS_RESET_POLICY is the id of your pass reset policy on azure. Same way you created SignInSignUp policy there should be blade to create pass reset policy, and you should supply...
I'm having issues trying to include hellojs as well. Im using isomorphic react application. Basically if I try to do: `import hello from '../vendor/hello.all.js';` im getting window not defined error....
Understood thanks. Currently I'm saving instance of hello on state as an object: `componentDidMount() { console.log('AppNavigation mounted'); if (!this.state.hello) { this.setState({ hello: initHello(}); } }` this is done so I...
Hey, there is no issue here one just has to be aware of this when redirecting from multiple domains. I've implemented this on web server level, basically multiple domains are...