This commit is contained in:
Martin McKeaveney 2021-11-04 10:50:43 +01:00
parent ed3a9b78ea
commit b7d99a6df1
1 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,6 @@
<script> <script>
import { auth, admin } from "stores/portal" import { auth, admin } from "stores/portal"
import { redirect, params } from "@roxi/routify" import { redirect } from "@roxi/routify"
// If already authenticated, redirect away from the auth section. // If already authenticated, redirect away from the auth section.
// Check this onMount rather than a reactive statement to avoid trumping // Check this onMount rather than a reactive statement to avoid trumping
@ -16,10 +16,9 @@
$admin.accountPortalUrl && $admin.accountPortalUrl &&
!$admin?.checklist?.sso?.checked !$admin?.checklist?.sso?.checked
) { ) {
const templateKey = $params["?template"]
let url = $admin.accountPortalUrl let url = $admin.accountPortalUrl
if (templateKey) { if ($auth.initTemplate) {
url += `?template=${templateKey}` url += `?template=${$auth.initTemplate}`
} }
window.location.href = url window.location.href = url
} }