Skip to content

Commit

Permalink
Merge pull request #882 from dpc-sdp/fix/r20-1572-allow-external-redi…
Browse files Browse the repository at this point in the history
…rect

[R20-1572] Enable external redirects
  • Loading branch information
dylankelly authored Oct 6, 2023
2 parents ea645de + 6c0e489 commit acf7d01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/nuxt-ripple/composables/use-tide-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ export const useTidePage = async (
case '305':
case '307':
await navigateTo(data.value.redirect_url, {
redirectCode: data.value.status_code
redirectCode: data.value.status_code,
external: data.value.redirect_type === 'external'
})
break
default:
Expand Down

0 comments on commit acf7d01

Please sign in to comment.