Skip to content

Instantly share code, notes, and snippets.

@tobinbc
Created August 4, 2019 21:18
Show Gist options
  • Save tobinbc/0bfbc598818b1fcc8f07753ec9260654 to your computer and use it in GitHub Desktop.
Save tobinbc/0bfbc598818b1fcc8f07753ec9260654 to your computer and use it in GitHub Desktop.
this.deeplinks
.route({
'/authevent/loggedin/': {},
})
.subscribe(
match => {
document.location.href = `http://localhost/authevent/loggedin/?code=${match.$args.code}&state=${match.$args.state}`;
},
nomatch => {
console.log('no match', document.URL, nomatch);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment