mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-28 04:47:23 -08:00
* add default group slug to app info if public * redirect public user to default group * added tests --------- Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
33 lines
824 B
Vue
33 lines
824 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent, useContext, useRouter } from "@nuxtjs/composition-api";
|
|
import { AppInfo } from "~/lib/api/types/admin";
|
|
|
|
export default defineComponent({
|
|
layout: "blank",
|
|
setup() {
|
|
const { $auth, $axios } = useContext();
|
|
const router = useRouter();
|
|
const groupSlug = computed(() => $auth.user?.groupSlug);
|
|
|
|
async function redirectPublicUserToDefaultGroup() {
|
|
const { data } = await $axios.get<AppInfo>("/api/app/about");
|
|
if (data?.defaultGroupSlug) {
|
|
router.push(`/g/${data.defaultGroupSlug}`);
|
|
} else {
|
|
router.push("/login");
|
|
}
|
|
}
|
|
|
|
if (groupSlug.value) {
|
|
router.push(`/g/${groupSlug.value}`);
|
|
} else {
|
|
redirectPublicUserToDefaultGroup();
|
|
}
|
|
}
|
|
});
|
|
</script>
|