Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Compare
Choose a tag to compare
@jmelberg-okta jmelberg-okta released this 29 Mar 00:05
· 269 commits to master since this release
76e761b

Fixes

Breaking Change

  • 786cd55 - Make login and logout redirect paths configurable (#169)

auth.login() didn't require a path parameter in previous versions of this library. In order to achieve custom redirecting, we've introduced the ability to pass in a custom route that navigates users to on completion.

// Before
auth.login()

// Now
auth.login('/profile')