[#55] added OAuth2 subscription redirect handler
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
<script>
|
||||
import { onMount } from "svelte";
|
||||
|
||||
onMount(() => {
|
||||
window.close();
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="block txt-hint txt-center">Loading...</div>
|
||||
@@ -145,6 +145,12 @@ const routes = {
|
||||
userData: { showAppSidebar: false },
|
||||
}),
|
||||
|
||||
"/auth/oauth2-redirect": wrap({
|
||||
asyncComponent: () => import("@/components/records/PageOAuth2Redirect.svelte"),
|
||||
conditions: baseConditions,
|
||||
userData: { showAppSidebar: false },
|
||||
}),
|
||||
|
||||
// catch-all fallback
|
||||
"*": wrap({
|
||||
component: PageIndex,
|
||||
|
||||
Reference in New Issue
Block a user