This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
jmelberg-okta
released this
27 Mar 23:23
·
271 commits
to master
since this release
Features
90d4068
- Adds ability to override theresponse_type
(#109)5d7738b
- Adds ability to override the redirect path on login (#84)
Fixes
Breaking Changes
$auth.loginRedirect
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.loginRedirect()
// Now
$auth.loginRedirect('/profile')