8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 7f281b8630 - Show all commits

View File

@ -15,6 +15,7 @@ import { useAcl } from 'src/composables/useAcl';
import { isLoggedIn } from 'src/utils/session';
import { useSession } from 'src/composables/useSession';
let session = null;
const { t, te } = i18n.global;
const createHistory = process.env.SERVER
@ -45,7 +46,8 @@ export { Router };
export default defineRouter(function (/* { store, ssrContext } */) {
const state = useState();
Router.beforeEach(async (to, from, next) => {
const session = useSession();
console.error('beforeEach', session);
if (!session) session = useSession();
const outLayout = Router.options.routes[0].children.map((r) => r.name);
if (!session.isLoggedIn() && !outLayout.includes(to.name)) {
return next({ name: 'Login', query: { redirect: to.fullPath } });