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 27 Mar 23:23
· 271 commits to master since this release
efae2a8

Features

  • 90d4068 - Adds ability to override the response_type (#109)
  • 5d7738b - Adds ability to override the redirect path on login (#84)

Fixes

  • 25bbbd2 - Replace the current path instead of pushing (#98)

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')